I need an example for asp.net c # shared_events,

I need an example for asp.net c # shared_events, for views of different users, I need to see the events created by a user and some specific parameters, i can do with an query? well as they do in php using sql_render?

I need Helps

Thanks.

I need to be able to re-load / refresh the scheduler data similar to that on the Filtration documentation…

i do it!! it is of sample in asp.net in DATA handler

public class Data : IHttpHandler, IRequiresSessionState
{
Cls_TiemposBLL oTiemposBLL = new Cls_TiemposBLL();
DataSet oDs;
IEnumerable dataset;

    public void ProcessRequest(HttpContext context)
    {
        SampleDataContext prueba = new SampleDataContext();


        oDs = o.F_CargarEventosActFun(Id1);
        var data = from ev in oDs.Tables[0].AsEnumerable()
                   select ev.Field<int>("id");

        dataset = from ev1 in prueba.Event
                  where data.Contains(ev1.id)
                  select ev1;

        context.Response.ContentType = "text/json";
        //context.Response.Write(
        //    new SchedulerAjaxData(new SampleDataContext().Event)
        //    );
        context.Response.Write(
            new SchedulerAjaxData(dataset)
            );
    }

But its not working in my application.

Its not even going on handler