I have a user control that requires a call to the database with veriables.
problem is the script does not work. How do I accomplish within the aspx page. If this is not possable how would I go about doing something like this.
TIA
Code:
<uc1:filter id="list" runat="server" DropDownName="Mylist" FilterStoredProc="[b]<% string[] tmpData = Session["userInfo"].ToString().Split(','); Response.Write(string.Format("exec sp_GetMyList '{0}'", tmpData[2])); %>"[/b] >
problem is the script does not work. How do I accomplish within the aspx page. If this is not possable how would I go about doing something like this.
TIA