Hello there,
So now my project can produce reports successfully, what I want to do is when users select different calendars, they will see different reports which have the events selected from the different calendars. I use Request.Cookies("checkedCalendars").Value in my web application code. How can I pass the cookie "checkedCalendars" to my Report.Designer.vb file, in which i have
Me.SqlDataSource1.SelectCommand = "SELECT Subject, Start, [End], aLocation" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "FROM tblActivities WHERE aCalendarID IN ("checkedCalendars") ;" ?
How can i do this?
Thank you very much.
So now my project can produce reports successfully, what I want to do is when users select different calendars, they will see different reports which have the events selected from the different calendars. I use Request.Cookies("checkedCalendars").Value in my web application code. How can I pass the cookie "checkedCalendars" to my Report.Designer.vb file, in which i have
Me.SqlDataSource1.SelectCommand = "SELECT Subject, Start, [End], aLocation" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "FROM tblActivities WHERE aCalendarID IN ("checkedCalendars") ;" ?
How can i do this?
Thank you very much.