I have a hyperlink on my Web form (home.aspx). I want to open another
form (Login.aspx) when user clicks this link. How to do this? I also
want to maintain site map when another form gets opened.
Mark Rae [MVP] - 19 Oct 2007 17:40 GMT
> I have a hyperlink on my Web form (home.aspx). I want to open another
> form (Login.aspx) when user clicks this link. How to do this?
Well, the obvious answer is to change the hyperlink to point to Login.aspx
instead of home.aspx, but I guess that's not what you really mean...
Can you explain in a bit more detail what you're trying to do...

Signature
Mark Rae
ASP.NET MVP
http://www.markrae.net
Siva M - 19 Oct 2007 17:53 GMT
In the client-side click event of the link, call window.open ('popup.aspx");
> I have a hyperlink on my Web form (home.aspx). I want to open another
> form (Login.aspx) when user clicks this link. How to do this? I also
> want to maintain site map when another form gets opened.