Click here to Skip to main content
Sign Up to vote bad
good
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 28 Dec '12 - 21:11

Comments
Zoltán Zörgő - 31 Dec '12 - 3:21
Any progress?

1 solution

<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[^]
  Permalink  

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

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Sergey Alexandrovich Kryukov 423
1 OriginalGriff 291
2 Mayur_Panchal 153
3 Mohammed Hameed 145
4 Dave Kreskowiak 125
0 Sergey Alexandrovich Kryukov 8,146
1 OriginalGriff 6,236
2 CPallini 3,482
3 Rohan Leuva 2,703
4 Maciej Los 2,234


Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 29 Dec 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid