Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hello
How do i request a form in asp.net?
<script runat="server"> void search_sub(Object sender, EventArgs e){ Server.Transfer("/soeg.aspx?search=") & Request.Form["search"]; }</script>
But it dosent work. I have tried with "," AND "+" instand of "&"
Server.Transfer( "/soeg.aspx?search=" + Request.Form["search"] );
Hiya,
The Request.Form["search"] seems to be out of the Sever.Teransfer brackets.
Try this
Server.Transfer(String.Format("/soeg.aspx?search={0}", Request.Form["search"]));
Tom
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Request form in asp.net
Hello
How do i request a form in asp.net?
<script runat="server">
void search_sub(Object sender, EventArgs e){
Server.Transfer("/soeg.aspx?search=") & Request.Form["search"];
}
</script>
But it dosent work. I have tried with "," AND "+" instand of "&"
Hiya,
The Request.Form["search"] seems to be out of the Sever.Teransfer brackets.
Try this
Tom
is working on a reply...