Click here to Skip to main content
15,886,639 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Dear Friends,

How to redirect Pages Based on Dropdownlist in Asp.Net c#?

I have 3 webpages in my project, when i select one page from dropdownlist. it should redirect to that page and that page should be displayed.

My pages are :

1)AttendanceReports.aspx
2)Exam Reports.aspx
3)OtherReports.aspx

my Dropdown is as

----- Select Report -----
Attendance Report
Exam Report
Other Reports
Posted
Comments
Zoltán Zörgő 31-Dec-12 3:21am    
Any progress?

1 solution

HTML
<select id="redirect" onchange="location.href=this.value;">
<option value="" selected disabled>Select report!</option>
<option value="AttendanceReports.aspx">Attendance Report</option>
<option value="ExamReports.aspx">Exam Report</option>
<option value="OtherReports.aspx">Other Reports</option>
</select>


But this is pure client side, if you need some other action on server side too, you can use that approach also, see: http://msdn.microsoft.com/en-us/library/540y83hx(v=vs.100).aspx[^]
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900