Apr 17, 2002 #1 LindaH Programmer Dec 12, 2001 42 US How would I programmatically click the <asp:hyperlink> web server control? (There's no click event.)
Apr 17, 2002 #2 TealWren Programmer Jun 7, 2001 231 US Do you need to actually click the html url for some reason, or just redirect the current page to a new page? To redirect your page, you can use this.Context.Response.Redirect(newURL); in C#. I'm not sure of the syntax in vb.net but it's probably similar. Hope this helps! TealWren Upvote 0 Downvote
Do you need to actually click the html url for some reason, or just redirect the current page to a new page? To redirect your page, you can use this.Context.Response.Redirect(newURL); in C#. I'm not sure of the syntax in vb.net but it's probably similar. Hope this helps! TealWren