|
-
Oct 5th, 2004, 11:41 PM
#1
Thread Starter
Hyperactive Member
show webform
I add a WebForm2 in my ASP.NET project.. but How can I show a WebForm?? WebForm2.Show doesn't work!! help me please??
-
Oct 5th, 2004, 11:55 PM
#2
You probably have Webform1.aspx as your start page. Either link to webform2.aspx from webform1.aspx or make webform2.aspx your start page.
-
Oct 6th, 2004, 12:02 AM
#3
Thread Starter
Hyperactive Member
yup webform1 is my start page.. how can i link the webform2?
-
Oct 6th, 2004, 12:05 AM
#4
In the HTML:
Code:
<a href="webform2.aspx">Click me!</a>
or in a button's click event:
VB Code:
Response.Redirect "webform2.aspx"
Or simply, in VS.NET, right click WebForm2.aspx in the solution explorer and choose "Set as start page"
-
Oct 6th, 2004, 02:15 AM
#5
New Member
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|