473,569 Members | 2,698 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Submit Form via code behind?

2 New Member
I know I know, why would I want to submit the form from server-side code, if the only way to get to the server-side code was BY submitting the form. But that's just it, when the code-behind page_load event fires it doesn't really "submit" the form as I would like it submitted.

Here's my problem, I made a shopping cart for a website, and to get the information securely paid for I need to send a form to paypal using method="post" and action="big long url". In asp.net I can't have multiple forms with runat="server" on the same web page, so what I did was create a new page with the only form being the send-to-paypal form, and the page_load event handler in the codebehind populates the form tag with the correct transaction information (item names, prices, shipping, etc). Currently I have to have it create a button here too with type="submit". You have to click the button before the transaction is sent to paypal. Is there a way to make the Page_Load event fire the form's submit event so I don't have to require a button click?

Here's the html part of the new page with the form:

Expand|Select|Wrap|Line Numbers
  1. <div id="SendPaypalInfo" runat="server">
  2.             <FORM action="https://www.paypal.com/cgi-bin/webscr" method="post" runat="server"></FORM>
  3.         </div>
  4.  

and then here's the current Page_Load codebehind:

Expand|Select|Wrap|Line Numbers
  1. Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  2.         If Not Page.IsPostBack Then
  3.             Dim TextToSend As String = ""
  4.             Dim a As Integer
  5.  
  6.             RetrieveSessionVariables()
  7.  
  8.             TextToSend = "<form name=""PaypalSubmitForm"" action=""https://www.paypal.com/cgi-bin/webscr"" method=""post"" runat=""server"">"
  9.             TextToSend = TextToSend & "<input type=""hidden"" name=""cmd"" value=""_cart"">"
  10.             TextToSend = TextToSend & "<input type=""hidden"" name=""business"" value=""EDITED"">"
  11.             TextToSend = TextToSend & "<input type=""hidden"" name=""upload"" value=""1"">"
  12. TextToSend = TextToSend & "<input type=""submit"" value=""Click Here""></form>"
  13.  
  14.  
  15.             Me.SendPaypalInfo.InnerHtml = TextToSend
  16.  
  17.         End If
  18.     End Sub

Can i submit the form in that very same page_load event? i don't want them to have to click that button :(
May 2 '06 #1
16 18975
NathyZif
2 New Member
Can anyone help me out on this? :\


I was thinking, maybe I could put some kind of javascript on_load function in the body tag of my site, and it would be executed after asp creates the page's content, would that work? If so, how do i make a javascript on_load event :X
May 2 '06 #2
NETSP
8 New Member
Were you able to resolve this issue? If yes, how? I am looking for an answer as well !!!
Nov 13 '07 #3
r035198x
13,262 MVP
Were you able to resolve this issue? If yes, how? I am looking for an answer as well !!!
The details of this problem are quite strange. Submitting a form as the page loads means submitting a form without taking any user input at all which brings to question the reason for the existence of the form in the first place. It's possible of course to call a Javascript function onload of a page that submits a form on that page.
Nov 13 '07 #4
NETSP
8 New Member
Ok. My issue is bit different.
I have this form

<form name='test' id='test' runat='server'>
<input type='text' id='uName' name='uName'/>
<input type='text' id='pwd' name='pwd' />
<input type="submit" name="submit" ID="submit" value="submit" />
</form>

Now, my process is something like this:

1. Enter username, password and click 'Submit'
2. On the server side, do some authentication process (this I cannot do client side, because the process checks for something by sending a request to some server and receives the response)
3. If the response is valid, then submit this form.

Now, somebody tell me, how can I submit this form either using javascript function or through code-behind.
Nov 13 '07 #5
r035198x
13,262 MVP
Ok. My issue is bit different.
I have this form

<form name='test' id='test' runat='server'>
<input type='text' id='uName' name='uName'/>
<input type='text' id='pwd' name='pwd' />
<input type="submit" name="submit" ID="submit" value="submit" />
</form>

Now, my process is something like this:

1. Enter username, password and click 'Submit'
2. On the server side, do some authentication process (this I cannot do client side, because the process checks for something by sending a request to some server and receives the response)
3. If the response is valid, then submit this form.

Now, somebody tell me, how can I submit this form either using javascript function or through code-behind.
So on submit call a Javascript function which calls a server result through AJAX. You can then submit the form from that Javascript function based of the value of the returned result.
Nov 13 '07 #6
NETSP
8 New Member
That is exactly what I am trying to do. I am using AJAX to retrieve the response and trying to submit the form. Since I have runat="server" in the <form> tag, I am unable to submit the form through JavaScript function. See below.

<script language="javas cript">
function submitf() //calling this function in onClick event of Submit button
{
Default.actuate Authenticate(ch eck_CallBack);
}

function check_CallBack( response)
{
if(response.val ue != "ERROR") //authentication works fine..
{
document.frmLog in.method = "post";
document.frmLog in.action = document.frmLog in.hdnTmpTarget .value;
document.frmLog in.submit();
}
}
</script>
Nov 13 '07 #7
r035198x
13,262 MVP
That is exactly what I am trying to do. I am using AJAX to retrieve the response and trying to submit the form. Since I have runat="server" in the <form> tag, I am unable to submit the form through JavaScript function. See below.

<script language="javas cript">
function submitf() //calling this function in onClick event of Submit button
{
Default.actuate Authenticate(ch eck_CallBack);
}

function check_CallBack( response)
{
if(response.val ue != "ERROR") //authentication works fine..
{
document.frmLog in.method = "post";
document.frmLog in.action = document.frmLog in.hdnTmpTarget .value;
document.frmLog in.submit();
}
}
</script>
Any reason why the form should have the runat server tag in this case?
Nov 13 '07 #8
NETSP
8 New Member
If you don't specify runat="server", the AJAX method won't be executed at all. . It fails to call the method which is in the code behind.
Nov 13 '07 #9
r035198x
13,262 MVP
If you don't specify runat="server", the AJAX method won't be executed at all. . It fails to call the method which is in the code behind.
But of course! Sorry about that. My very bad.
Now you said it's not working. If you put an alert in your code to show
the value of document.frmLog in.hdnTmpTarget .value does it give the correct value?
Nov 13 '07 #10

Sign in to post your reply or Sign up for a free account.

Similar topics

1
2218
by: Tony Hedge | last post by:
Hello, I hope some one can answer this for me. I am using .NET version 1.0 on Windows 2000Pro and I am getting an error when doing a form submit from an HTML control. Please look at the following brief code example: I have two aspx file WebForm1.aspx and WebForm2.aspx. WebForm1 has the following elements:
5
10976
by: Scott | last post by:
How can I tell a form to submit itself in the code-behind in vs.net? In other words, in javascript I can do blah.submit() - how do I do this in vs.net code-behind?
0
1548
by: Niks | last post by:
Hi, I am creating a simple .aspx page to add some fields with validation. I have used different .NET validations like REquiredFieldValidator, RegularExpressionValidator and showed the summary in the bulleted list on top. I have 3 text boxes, and two RadioButtonList. and 3 buttons. One for Submit, Reset and Exit. If submit is pressed...
3
2593
by: Arun K | last post by:
Hi, I am creating a simple .aspx page to add some fields with validation. I have used different .NET validations like REquiredFieldValidator, RegularExpressionValidator and showed the summary in the bulleted list on top. I have 3 text boxes, and two RadioButtonList. and 3 buttons. One for Submit, Reset and Exit. If submit is pressed...
10
3022
by: Perry van Kuppeveld | last post by:
Hi, I have a problem with formatting a table including text fields wich can contain up to 255 chars. I need a table with 3 columns: - First column 50 % over the with a rowspan of the total number of rows. - Second column 25 %, no rowspan - Third column 25 %, no rowspan
6
5658
by: milkyway | last post by:
Hello there, I have the following code (written in Javascript) for posting of a form on the client side: .... var f2 = document.forms; f2.method = "post"; f2.submit();
3
1442
by: PJ6 | last post by:
When I have client-side script like this - document.forms.submit('test') how do I access, from server-side code, the value I put in the submit method? Also, is it possible to get the control's containing form name so I can emite script like this -
3
5054
by: Anthony | last post by:
I have a form on a web page that requires to click on a button to submit the information. I have two questions about changing this form: 1. Is there a way that I can change the script so that the form can be submitted by hitting the enter key? 2. Is there a way that I can have the Username and Password boxes cleard after the form is...
10
8584
by: The Natural Philosopher | last post by:
I am coding up a bit of javascript stuff, and have managed to stumble my way through most of what I want.. But this one has got me stumped. I call submit() and get a javascript error 'Submit not defined' in Firefox.. My very expensive javascript Bible assures me its built in ..so where oh where have I FSCKED up?
0
7612
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7924
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8120
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7672
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7968
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
1
5512
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
5219
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
1
1212
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
937
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.