i am using two .aspx pages in my application. Second page implements a dropdownlist which is binded with the database using collection. now i want to redirect from second page to my first page. i used
Response.Redirect("~/Admin/Home.aspx");
but its throwing an exception which follows like this
System.Web.HttpRequestValidationException: A potentially dangerous Request.Form value was detected from the client (ctl00$MainContent$DropDownList1="").
I want to resolve this exception. Any new ideas regarding this problem are expected.
Thanks in advance