IIS ASP - Tranfering variable from a asp form page to a ACTION page

This is Interesting: Free IT Magazines  
Home > Archive > IIS ASP > December 2004 > Tranfering variable from a asp form page to a ACTION page





You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

Author Tranfering variable from a asp form page to a ACTION page
Jack

2004-12-22, 5:54 pm

Hi,
I got a asp form page where the POST ACTION = confirmation.asp page is used
to save the values collected from text boxes from the form in a database.
For example txtTotalOutlay field is being used in confirmation.asp page to
update a database field.

However, there is a field in the form which is calculated field e.g.
NetOutlay = .90 * txtTotalOutlay. This NetOutlay is thus not a text field.
However, in the confirmation field I need to bring the contents of NetOutlay
and store it in the same table as the other field. I am wondering whether
putting the value of the NetOutlay in Session variable and using in the
confirmation.asp field would be the right approach or there be any better way
to resolve this. Any help is appreciated.
Thanks.

Ray Costanzo [MVP]

2004-12-22, 5:54 pm

> However, there is a field in the form which is calculated field e.g.
> NetOutlay = .90 * txtTotalOutlay. This NetOutlay is thus not a text field.


What is it then?

Ray at work


"Jack" <Jack@discussions.microsoft.com> wrote in message
news:3A15610B-91A1-4840-A2E8-29A83D9EF32F@microsoft.com...
> Hi,
> I got a asp form page where the POST ACTION = confirmation.asp page is

used
> to save the values collected from text boxes from the form in a database.
> For example txtTotalOutlay field is being used in confirmation.asp page to
> update a database field.
>
> However, there is a field in the form which is calculated field e.g.
> NetOutlay = .90 * txtTotalOutlay. This NetOutlay is thus not a text field.
> However, in the confirmation field I need to bring the contents of

NetOutlay
> and store it in the same table as the other field. I am wondering whether
> putting the value of the NetOutlay in Session variable and using in the
> confirmation.asp field would be the right approach or there be any better

way
> to resolve this. Any help is appreciated.
> Thanks.
>



Evertjan.

2004-12-22, 5:54 pm

Ray Costanzo [MVP] wrote on 22 dec 2004 in
microsoft.public.inetserver.asp.general:

>
> What is it then?
>


an error ?

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jack

2004-12-22, 5:54 pm

The value of netoutlay field is not captured from the user. Rather it is a
calulated field by using the value from txtTotalOutlay. Hope I was clear
enough here. Thanks.

"Ray Costanzo [MVP]" wrote:

>
> What is it then?
>
> Ray at work
>
>
> "Jack" <Jack@discussions.microsoft.com> wrote in message
> news:3A15610B-91A1-4840-A2E8-29A83D9EF32F@microsoft.com...
> used
> NetOutlay
> way
>
>
>

Ray Costanzo [MVP]

2004-12-22, 5:54 pm

Okay, but in what type of element does it exist? <input, <legend, <span,
<textarea, etc.?

Ray at work

"Jack" <Jack@discussions.microsoft.com> wrote in message
news:D7663342-3DC6-4E98-AA85-AFBFE8035E70@microsoft.com...[vbcol=seagreen]
> The value of netoutlay field is not captured from the user. Rather it is a
> calulated field by using the value from txtTotalOutlay. Hope I was clear
> enough here. Thanks.
>
> "Ray Costanzo [MVP]" wrote:
>
field.[vbcol=seagreen]
database.[vbcol=seagreen]
page to[vbcol=seagreen]
field.[vbcol=seagreen]
whether[vbcol=seagreen]
the[vbcol=seagreen]
better[vbcol=seagreen]


Bob Barrows [MVP]

2004-12-22, 5:54 pm

Jack wrote:
> The value of netoutlay field is not captured from the user. Rather it
> is a calulated field by using the value from txtTotalOutlay. Hope I
> was clear enough here. Thanks.
>

Ray Costanzo [MVP] wrote:
> Okay, but in what type of element does it exist? <input, <legend,
> <span, <textarea, etc.?


IOW, the value has to be stored in an html element whose name attribute has
been set in order for it to be passed to the ACTION page. You can put in in
an INPUT element of type "hidden"

Bob Barrows

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.


Jack

2004-12-22, 5:54 pm

Actually, in the main form there are about eitht text fields where the user
inputs values. Based on the values, some calculated fields are displayed on
the form. Hence
NetTotalOutlay can be termed as a variable that stores values by the use of
text field input value. The variable is used to display the NetToalOutlay.
Thus, it is neither of the above.
Thus the above variable need to be used in the confirmation.asp field to
update
one of the table fields.
The Hope this helps. Thanks Ray.

"Ray Costanzo [MVP]" wrote:

> Okay, but in what type of element does it exist? <input, <legend, <span,
> <textarea, etc.?
>
> Ray at work
>
> "Jack" <Jack@discussions.microsoft.com> wrote in message
> news:D7663342-3DC6-4E98-AA85-AFBFE8035E70@microsoft.com...
> field.
> database.
> page to
> field.
> whether
> the
> better
>
>
>

Jack

2004-12-22, 5:54 pm

Thanks for the help Bob. Here is a quick question. Does it make any sense if
I try to put the variable(Netoutlay) in a session vairable and try to use it
in the confirmation.asp form? Conceptually, does it make any sense? Thanks
PS: Do you have any link for hidden INPUT element example?

"Bob Barrows [MVP]" wrote:

> Jack wrote:
> Ray Costanzo [MVP] wrote:
>
> IOW, the value has to be stored in an html element whose name attribute has
> been set in order for it to be passed to the ACTION page. You can put in in
> an INPUT element of type "hidden"
>
> Bob Barrows
>
> --
> Microsoft MVP -- ASP/ASP.NET
> Please reply to the newsgroup. The email account listed in my From
> header is my spam trap, so I don't check it very often. You will get a
> quicker response by posting to the newsgroup.
>
>
>

Bob Barrows [MVP]

2004-12-22, 5:54 pm

Jack wrote:
> Thanks for the help Bob. Here is a quick question. Does it make any
> sense if I try to put the variable(Netoutlay) in a session vairable
> and try to use it in the confirmation.asp form?


If it's being calculated server-side, then there is no reason not to use a
session variable

> Conceptually, does it
> make any sense? Thanks PS: Do you have any link for hidden INPUT
> element example?


Do a search at msdn.microsoft.com/library for "input element". All the
documentation can be found there.

Bob Barrows


--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"


Scott McNair

2004-12-23, 5:59 pm

"=?Utf-8?B?SmFjaw==?=" <Jack@discussions.microsoft.com> wrote in
news:3A15610B-91A1-4840-A2E8-29A83D9EF32F@microsoft.com:

> Any help is appreciated.


On the client:

<%MySecretValue = 12345%>

<form method=post action="xxx.asp">
<input type=text name=UserName><br>
<input type=text name=PhoneNo><br>
<input type=hidden name=SecretValue value='<%=MySecretValue%>'>
</form>

-------------------

On the server:

UserName = Request.Form("UserName")
PhoneNo = Request.Form("PhoneNo")
SecretValue = Request.Form("SecretValue")
Sponsored Links






Free braindumps | Software forum | Database administration forum

Copyright 2003 - 2008 webservertalk.com