Asp.net form submit action question | | |
In Asp.net web form under form tag there is action field that I am point to
some other page, and not to same web form. When I run this page it is always
pointing to itself. How do I get around this?
Here is HTML code from webform..
Thanks,
Sinisa
<%@ Page Language="vb" AutoEventWireup="false"
Codebehind="BusinessTest.aspx.vb" Inherits="EDMSearchForms.BusinessTest"
EnableSessionState="True" enableViewState="True"%>
<%@ Register TagPrefix="uc1" TagName="BusinessDirectoryUC"
Src="../Forms/BusinessDirectoryUC.ascx" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>BusinessTest</title>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema"
content="http://schemas.microsoft.com/intellisense/ie5">
</HEAD>
<body MS_POSITIONING="GridLayout">
<form id="search1" method="post" runat="server"
action="http://www.techtriangle.com/search/SearchResultsWaterloo.cfm"
name="search">
<input type="hidden" name="SearchScope" value="Business">
</form>
</body>
</HTML> | | | | re: Asp.net form submit action question
using the <form runat="server"> you *cannot" have a value for action. All
aspx forms must post back to the same page. If you remove the runat="server"
you may be able to do this; but you have stick to html controls
"TheOne" wrote:
[color=blue]
> In Asp.net web form under form tag there is action field that I am point to
> some other page, and not to same web form. When I run this page it is always
> pointing to itself. How do I get around this?
>
> Here is HTML code from webform..
>
> Thanks,
>
> Sinisa
>
> <%@ Page Language="vb" AutoEventWireup="false"
> Codebehind="BusinessTest.aspx.vb" Inherits="EDMSearchForms.BusinessTest"
> EnableSessionState="True" enableViewState="True"%>
> <%@ Register TagPrefix="uc1" TagName="BusinessDirectoryUC"
> Src="../Forms/BusinessDirectoryUC.ascx" %>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> <HTML>
> <HEAD>
> <title>BusinessTest</title>
> <meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
> <meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
> <meta name="vs_defaultClientScript" content="JavaScript">
> <meta name="vs_targetSchema"
> content="http://schemas.microsoft.com/intellisense/ie5">
> </HEAD>
> <body MS_POSITIONING="GridLayout">
> <form id="search1" method="post" runat="server"
> action="http://www.techtriangle.com/search/SearchResultsWaterloo.cfm"
> name="search">
> <input type="hidden" name="SearchScope" value="Business">
> </form>
> </body>
> </HTML>
>
>
>[/color] | | | | re: Asp.net form submit action question
You've got to ger rid of the runat=server for the form. An ASP.Net form must
post back to itself to handle certain kinds of events, like catching a
button's click by the server.
Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage
"TheOne" <TheOne@noemail.nospam> wrote in message
news:uh9mW85EFHA.3504@TK2MSFTNGP12.phx.gbl...[color=blue]
> In Asp.net web form under form tag there is action field that I am point
> to
> some other page, and not to same web form. When I run this page it is
> always
> pointing to itself. How do I get around this?
>
> Here is HTML code from webform..
>
> Thanks,
>
> Sinisa
>
> <%@ Page Language="vb" AutoEventWireup="false"
> Codebehind="BusinessTest.aspx.vb" Inherits="EDMSearchForms.BusinessTest"
> EnableSessionState="True" enableViewState="True"%>
> <%@ Register TagPrefix="uc1" TagName="BusinessDirectoryUC"
> Src="../Forms/BusinessDirectoryUC.ascx" %>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> <HTML>
> <HEAD>
> <title>BusinessTest</title>
> <meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
> <meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
> <meta name="vs_defaultClientScript" content="JavaScript">
> <meta name="vs_targetSchema"
> content="http://schemas.microsoft.com/intellisense/ie5">
> </HEAD>
> <body MS_POSITIONING="GridLayout">
> <form id="search1" method="post" runat="server"
> action="http://www.techtriangle.com/search/SearchResultsWaterloo.cfm"
> name="search">
> <input type="hidden" name="SearchScope" value="Business">
> </form>
> </body>
> </HTML>
>
>[/color] | | | | re: Asp.net form submit action question
I have to use server controls since I will be putting in user control for
it. Is it possible to use response.redirect to submit form? Is there some
other solution. Somehow I need to post information from this form.
Thanks,
Sinisa
"TheOne" <TheOne@noemail.nospam> wrote in message
news:uh9mW85EFHA.3504@TK2MSFTNGP12.phx.gbl...[color=blue]
> In Asp.net web form under form tag there is action field that I am point[/color]
to[color=blue]
> some other page, and not to same web form. When I run this page it is[/color]
always[color=blue]
> pointing to itself. How do I get around this?
>
> Here is HTML code from webform..
>
> Thanks,
>
> Sinisa
>
> <%@ Page Language="vb" AutoEventWireup="false"
> Codebehind="BusinessTest.aspx.vb" Inherits="EDMSearchForms.BusinessTest"
> EnableSessionState="True" enableViewState="True"%>
> <%@ Register TagPrefix="uc1" TagName="BusinessDirectoryUC"
> Src="../Forms/BusinessDirectoryUC.ascx" %>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> <HTML>
> <HEAD>
> <title>BusinessTest</title>
> <meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
> <meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
> <meta name="vs_defaultClientScript" content="JavaScript">
> <meta name="vs_targetSchema"
> content="http://schemas.microsoft.com/intellisense/ie5">
> </HEAD>
> <body MS_POSITIONING="GridLayout">
> <form id="search1" method="post" runat="server"
> action="http://www.techtriangle.com/search/SearchResultsWaterloo.cfm"
> name="search">
> <input type="hidden" name="SearchScope" value="Business">
> </form>
> </body>
> </HTML>
>
>[/color] | | | | re: Asp.net form submit action question
AP.NET 2.0 solves this issue. However, its only in BETA. So, you can't
have the best of both worlds. Either you stick with the current model by
having the form post back to itself or do as we suggested. If that doesn't
work for you. Then maybe asp.net is not the right solution for you. Give
classic ASP a try. :-)
"TheOne" wrote:
[color=blue]
> I have to use server controls since I will be putting in user control for
> it. Is it possible to use response.redirect to submit form? Is there some
> other solution. Somehow I need to post information from this form.
>
> Thanks,
>
> Sinisa
>
> "TheOne" <TheOne@noemail.nospam> wrote in message
> news:uh9mW85EFHA.3504@TK2MSFTNGP12.phx.gbl...[color=green]
> > In Asp.net web form under form tag there is action field that I am point[/color]
> to[color=green]
> > some other page, and not to same web form. When I run this page it is[/color]
> always[color=green]
> > pointing to itself. How do I get around this?
> >
> > Here is HTML code from webform..
> >
> > Thanks,
> >
> > Sinisa
> >
> > <%@ Page Language="vb" AutoEventWireup="false"
> > Codebehind="BusinessTest.aspx.vb" Inherits="EDMSearchForms.BusinessTest"
> > EnableSessionState="True" enableViewState="True"%>
> > <%@ Register TagPrefix="uc1" TagName="BusinessDirectoryUC"
> > Src="../Forms/BusinessDirectoryUC.ascx" %>
> > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> > <HTML>
> > <HEAD>
> > <title>BusinessTest</title>
> > <meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
> > <meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
> > <meta name="vs_defaultClientScript" content="JavaScript">
> > <meta name="vs_targetSchema"
> > content="http://schemas.microsoft.com/intellisense/ie5">
> > </HEAD>
> > <body MS_POSITIONING="GridLayout">
> > <form id="search1" method="post" runat="server"
> > action="http://www.techtriangle.com/search/SearchResultsWaterloo.cfm"
> > name="search">
> > <input type="hidden" name="SearchScope" value="Business">
> > </form>
> > </body>
> > </HTML>
> >
> >[/color]
>
>
>[/color] | | | | re: Asp.net form submit action question
"TheOne" <TheOne@noemail.nospam> wrote in message
news:uh9mW85EFHA.3504@TK2MSFTNGP12.phx.gbl...[color=blue]
> In Asp.net web form under form tag there is action field that I am point[/color]
to[color=blue]
> some other page, and not to same web form. When I run this page it is[/color]
always[color=blue]
> pointing to itself. How do I get around this?
>
> Here is HTML code from webform..
>
> Thanks,
>
> Sinisa[/color]
To transfer to another webpage look into one of these three options:
Response.Redirect
Server.Transfer
Server.Execute
Managing ASP.NET Navigation http://www.ondotnet.com/pub/a/dotnet...aspnetnav.html
Hope this helps,
Steve-O | | | | re: Asp.net form submit action question
I'm trying to do something similar, to do a POST to paypal. In my quick
testing, I don't see that removing runat=server and using server controls are
mutually exclusive, it's just that you can't process any events from those
controls (which you don't care about, because you're off to another page
anyway).
In my test, I have a single placeholder on the form, and the <form> has
"runat=server" gone, method="post" and action="paypal, etc.". In the
code-behind I add htmlinputhidden fields to the placeholder for all my
name/value pairs (appears that I have to set id= for each, which sets both
name= and id=, not sure why).
When I submit this form it goes to paypal with the post values as planned.
Last piece I'm working on is to do the submit automatically, which per
various posts out here I think I can do as document.forms[0].submit().
hth,
Bill
"TheOne" wrote:
[color=blue]
> In Asp.net web form under form tag there is action field that I am point to
> some other page, and not to same web form. When I run this page it is always
> pointing to itself. How do I get around this?
>
> Here is HTML code from webform..
>
> Thanks,
>
> Sinisa
>
> <%@ Page Language="vb" AutoEventWireup="false"
> Codebehind="BusinessTest.aspx.vb" Inherits="EDMSearchForms.BusinessTest"
> EnableSessionState="True" enableViewState="True"%>
> <%@ Register TagPrefix="uc1" TagName="BusinessDirectoryUC"
> Src="../Forms/BusinessDirectoryUC.ascx" %>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> <HTML>
> <HEAD>
> <title>BusinessTest</title>
> <meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
> <meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
> <meta name="vs_defaultClientScript" content="JavaScript">
> <meta name="vs_targetSchema"
> content="http://schemas.microsoft.com/intellisense/ie5">
> </HEAD>
> <body MS_POSITIONING="GridLayout">
> <form id="search1" method="post" runat="server"
> action="http://www.techtriangle.com/search/SearchResultsWaterloo.cfm"
> name="search">
> <input type="hidden" name="SearchScope" value="Business">
> </form>
> </body>
> </HTML>
>
>
>[/color] | | | | re: Asp.net form submit action question
What is the "proper" way to programmatically call another page in your app
while passing it information? QueryString has length limitations, Session
would seem to be an improper place for page-to-page, but Context.Items don't
actually get saved to the page source, so there's no "history" with those.
I'm curious what the right way is because I'm struggling with related
issues, and right now, I'm dropping a webcontrol on my pages called
ContextItemRetentionBlock that renders hidden inputs with those values to
the page so that they don't get lost with the context.
"Mark Fitzpatrick" <markfitz@fitzme.com> wrote in message
news:uWWwoB6EFHA.2828@TK2MSFTNGP09.phx.gbl...[color=blue]
> You've got to ger rid of the runat=server for the form. An ASP.Net form
> must post back to itself to handle certain kinds of events, like catching
> a button's click by the server.
>
> Hope this helps,
> Mark Fitzpatrick
> Microsoft MVP - FrontPage
>
> "TheOne" <TheOne@noemail.nospam> wrote in message
> news:uh9mW85EFHA.3504@TK2MSFTNGP12.phx.gbl...[color=green]
>> In Asp.net web form under form tag there is action field that I am point
>> to
>> some other page, and not to same web form. When I run this page it is
>> always
>> pointing to itself. How do I get around this?
>>
>> Here is HTML code from webform..
>>
>> Thanks,
>>
>> Sinisa
>>
>> <%@ Page Language="vb" AutoEventWireup="false"
>> Codebehind="BusinessTest.aspx.vb" Inherits="EDMSearchForms.BusinessTest"
>> EnableSessionState="True" enableViewState="True"%>
>> <%@ Register TagPrefix="uc1" TagName="BusinessDirectoryUC"
>> Src="../Forms/BusinessDirectoryUC.ascx" %>
>> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
>> <HTML>
>> <HEAD>
>> <title>BusinessTest</title>
>> <meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
>> <meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
>> <meta name="vs_defaultClientScript" content="JavaScript">
>> <meta name="vs_targetSchema"
>> content="http://schemas.microsoft.com/intellisense/ie5">
>> </HEAD>
>> <body MS_POSITIONING="GridLayout">
>> <form id="search1" method="post" runat="server"
>> action="http://www.techtriangle.com/search/SearchResultsWaterloo.cfm"
>> name="search">
>> <input type="hidden" name="SearchScope" value="Business">
>> </form>
>> </body>
>> </HTML>
>>
>>[/color]
>
>[/color] | | | | re: Asp.net form submit action question
P.S. Turns out it was cleaner to build the whole "redirect" page strictly via
code in the helper class, e.g. "<html><body><form name= ...", etc., and
output the hidden fields as literal text in the middle.
"Bill Borg" wrote:
[color=blue]
> I'm trying to do something similar, to do a POST to paypal. In my quick
> testing, I don't see that removing runat=server and using server controls are
> mutually exclusive, it's just that you can't process any events from those
> controls (which you don't care about, because you're off to another page
> anyway).
>
> In my test, I have a single placeholder on the form, and the <form> has
> "runat=server" gone, method="post" and action="paypal, etc.". In the
> code-behind I add htmlinputhidden fields to the placeholder for all my
> name/value pairs (appears that I have to set id= for each, which sets both
> name= and id=, not sure why).
>
> When I submit this form it goes to paypal with the post values as planned.
> Last piece I'm working on is to do the submit automatically, which per
> various posts out here I think I can do as document.forms[0].submit().
>
> hth,
>
> Bill
>
> "TheOne" wrote:
>[color=green]
> > In Asp.net web form under form tag there is action field that I am point to
> > some other page, and not to same web form. When I run this page it is always
> > pointing to itself. How do I get around this?
> >
> > Here is HTML code from webform..
> >
> > Thanks,
> >
> > Sinisa
> >
> > <%@ Page Language="vb" AutoEventWireup="false"
> > Codebehind="BusinessTest.aspx.vb" Inherits="EDMSearchForms.BusinessTest"
> > EnableSessionState="True" enableViewState="True"%>
> > <%@ Register TagPrefix="uc1" TagName="BusinessDirectoryUC"
> > Src="../Forms/BusinessDirectoryUC.ascx" %>
> > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> > <HTML>
> > <HEAD>
> > <title>BusinessTest</title>
> > <meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
> > <meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
> > <meta name="vs_defaultClientScript" content="JavaScript">
> > <meta name="vs_targetSchema"
> > content="http://schemas.microsoft.com/intellisense/ie5">
> > </HEAD>
> > <body MS_POSITIONING="GridLayout">
> > <form id="search1" method="post" runat="server"
> > action="http://www.techtriangle.com/search/SearchResultsWaterloo.cfm"
> > name="search">
> > <input type="hidden" name="SearchScope" value="Business">
> > </form>
> > </body>
> > </HTML>
> >
> >
> >[/color][/color] | | | | re: Asp.net form submit action question
P.S. Turns out it was cleaner to build the entire "redirect" page from
scratch via code in the helper class, e.g. "<html><body><form name=...>",
etc. and write the hidden fields as literal text in the middle.
"Bill Borg" wrote:
[color=blue]
> I'm trying to do something similar, to do a POST to paypal. In my quick
> testing, I don't see that removing runat=server and using server controls are
> mutually exclusive, it's just that you can't process any events from those
> controls (which you don't care about, because you're off to another page
> anyway).
>
> In my test, I have a single placeholder on the form, and the <form> has
> "runat=server" gone, method="post" and action="paypal, etc.". In the
> code-behind I add htmlinputhidden fields to the placeholder for all my
> name/value pairs (appears that I have to set id= for each, which sets both
> name= and id=, not sure why).
>
> When I submit this form it goes to paypal with the post values as planned.
> Last piece I'm working on is to do the submit automatically, which per
> various posts out here I think I can do as document.forms[0].submit().
>
> hth,
>
> Bill
>
> "TheOne" wrote:
>[color=green]
> > In Asp.net web form under form tag there is action field that I am point to
> > some other page, and not to same web form. When I run this page it is always
> > pointing to itself. How do I get around this?
> >
> > Here is HTML code from webform..
> >
> > Thanks,
> >
> > Sinisa
> >
> > <%@ Page Language="vb" AutoEventWireup="false"
> > Codebehind="BusinessTest.aspx.vb" Inherits="EDMSearchForms.BusinessTest"
> > EnableSessionState="True" enableViewState="True"%>
> > <%@ Register TagPrefix="uc1" TagName="BusinessDirectoryUC"
> > Src="../Forms/BusinessDirectoryUC.ascx" %>
> > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> > <HTML>
> > <HEAD>
> > <title>BusinessTest</title>
> > <meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
> > <meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
> > <meta name="vs_defaultClientScript" content="JavaScript">
> > <meta name="vs_targetSchema"
> > content="http://schemas.microsoft.com/intellisense/ie5">
> > </HEAD>
> > <body MS_POSITIONING="GridLayout">
> > <form id="search1" method="post" runat="server"
> > action="http://www.techtriangle.com/search/SearchResultsWaterloo.cfm"
> > name="search">
> > <input type="hidden" name="SearchScope" value="Business">
> > </form>
> > </body>
> > </HTML>
> >
> >
> >[/color][/color] | | | | re: Asp.net form submit action question
Hi Sinisa,
Yes, currently the ASP.NET 1.x hasn't any buildin means for cross-page
posting. If you do need to cross-post to different page, you can have a
look at the following article which mentioned the scripting way:
#Post an ASP.NET form with JavaScript http://www.codeproject.com/aspnet/jsnopostback.asp
Also, the ASP.NET2.0 does provide complete and great support on cross-page
posting. And provide more features on the cross-page interaction Model.
Thanks.
Steven Cheng
Microsoft Online Support
Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.) | | | | re: Asp.net form submit action question
Hi, thanks this is what I am trying to do. Page that I am posting to is made
in cold fusion. Our web designer gave me java script to use to change
"action".
Thanks,
Sinisa
code.....
<script language="javascript" type="text/javascript">
//<!--
document.search1.action =
'http://www.techtriangle.com/search/SearchResultsWaterloo.cfm';
//-->
</script>
"Steven Cheng[MSFT]" <v-schang@online.microsoft.com> wrote in message
news:spGFqu8EFHA.4020@TK2MSFTNGXA01.phx.gbl...[color=blue]
> Hi Sinisa,
>
> Yes, currently the ASP.NET 1.x hasn't any buildin means for cross-page
> posting. If you do need to cross-post to different page, you can have a
> look at the following article which mentioned the scripting way:
>
> #Post an ASP.NET form with JavaScript
> http://www.codeproject.com/aspnet/jsnopostback.asp
>
> Also, the ASP.NET2.0 does provide complete and great support on cross-page
> posting. And provide more features on the cross-page interaction Model.
>
> Thanks.
>
> Steven Cheng
> Microsoft Online Support
>
> Get Secure! www.microsoft.com/security
> (This posting is provided "AS IS", with no warranties, and confers no
> rights.)
>[/color] | | | | re: Asp.net form submit action question
Thanks for your followup.
Glad that you've also found the tricks :)
Good LUck!
Thanks & Regards,
Steven Cheng
Microsoft Online Support
Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.) |  | | | | /bytes/about
We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights.
Get the best answers to your questions from over 226,471 network members.
|