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...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.
Continue discussion
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...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.