I need to be able to prompt a user for a page name (somepage.html) that will then be inserted into the page as asp code. The inserted code would look something like where somepage.html is provided by the user:
<%
Server.Transfer("somepage.html")
%>
I need to do this from a command button. I have been building my command buttons in VB.NET on the server side and would prefer to do the same with this. Any ideas?