Click here to Skip to main content
15,888,454 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I have created 9 webforms in a project called "PIMS". I have not linked any form together simply because I dont know how to do that. Now when I load and run the application, it presents to me only the form that I have selected to run as "Start Page". How can I link all 9 webforms together present all the forms to users so they can choose the form they want to work on. Please suggest.

Kind regards,
Posted
Updated 30-Jul-13 20:06pm
v2
Comments
[no name] 31-Jul-13 2:11am    
See things are bit confusing..
if i am taking it correctly then what you have to do is at either link button or button click events you have to mention your form name in response.redirect(""). the way you want.
e.g. suppose after registration you want login then at registration at submit button you have to say response.redirect("login.aspx")
let me know weather i am taking things correctly or not..
[no name] 31-Jul-13 4:39am    
@Code-Hunt , Thanks

You can achieve it by using several ways depending upon your requirement
like using Menu control, having link buttons on page on which click event you can navigate to the desired page.

Please mark as answer if suffice your query.

Thanks,
Dheeraj Gupta
 
Share this answer
 
You can link any page or form by tag Anchor

HTML
<a href="form2.aspx">Click Here To Visit Form 2</a>


or any page

 
Share this answer
 
You can link any page or form by tag Anchor

HTML
<a href="form2.aspx">Click Here To Visit Form 2</a>


or any page

HTML
<a href="page2.html">Click Here To Visit Page 2</a>


or you can use ASP.NET Controls like HyperLink

ASP.NET
<asp:hyperlink id="HyperLink1" runat="server" navigateurl="form2.aspx" xmlns:asp="#unknown">HyperLink</asp:hyperlink>


in advance you could use Javascript plugins to make menu with motions and good user experience for example http://jqueryui.com/menu/
 
Share this answer
 

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