Code Comments

Programming Forum and web based access to our favorite programming groups.
For Programmers: Free Programming Magazines | New: Database administration forum
Registration is free! Edit your profileCalendarFind other membersFrequently Asked QuestionsSearch -> 
Post New Thread











Thread
Author

Tranfering variable from a asp form page to a ACTION page
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 wa
y
to resolve this. Any help is appreciated.
Thanks.


Report this thread to moderator Post Follow-up to this message
Old Post
Jack
12-23-04 01:55 AM


Re: Tranfering variable from a asp form page to a ACTION page
> 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.
>



Report this thread to moderator Post Follow-up to this message
Old Post
Ray Costanzo [MVP]
12-23-04 01:55 AM


Re: Tranfering variable from a asp form page to a ACTION page
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)

Report this thread to moderator Post Follow-up to this message
Old Post
Evertjan.
12-23-04 01:55 AM


Re: Tranfering variable from a asp form page to a ACTION page
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 
>
>
>

Report this thread to moderator Post Follow-up to this message
Old Post
Jack
12-23-04 01:55 AM


Re: Tranfering variable from a asp form page to a ACTION page
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...
> 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. 
database. 
page to 
field. 
whether 
the 
better 



Report this thread to moderator Post Follow-up to this message
Old Post
Ray Costanzo [MVP]
12-23-04 01:55 AM


Re: Tranfering variable from a asp form page to a ACTION page
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.



Report this thread to moderator Post Follow-up to this message
Old Post
Bob Barrows [MVP]
12-23-04 01:55 AM


Re: Tranfering variable from a asp form page to a ACTION page
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 
>
>
>

Report this thread to moderator Post Follow-up to this message
Old Post
Jack
12-23-04 01:55 AM


Re: Tranfering variable from a asp form page to a ACTION page
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 ha
s
> been set in order for it to be passed to the ACTION page. You can put in i
n
> 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.
>
>
>

Report this thread to moderator Post Follow-up to this message
Old Post
Jack
12-23-04 01:55 AM


Re: Tranfering variable from a asp form page to a ACTION page
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"



Report this thread to moderator Post Follow-up to this message
Old Post
Bob Barrows [MVP]
12-23-04 01:55 AM


Re: Tranfering variable from a asp form page to a ACTION page
"examnotes" <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")

Report this thread to moderator Post Follow-up to this message
Old Post
Scott McNair
12-24-04 01:55 AM


Sponsored Links




Last Thread Next Thread Next
Search this forum -> 
Post New Thread

ASP archive

Show a Printable Version Send to friend Email This Page to Someone! subscribe to this thread Receive updates to this thread
Computer Consultants
Programming Jobs
Visual Basic Controls
SQL Server Programming
Webservices
Java Security
Visual Studio
C# Programming
Visual J++
Software engineering
Open source Software
Perl Programming
PHP Programming
ASP Programming
ASP .NET Programming
Visual Basic Programming
Windows Scripting Host
Java Programming
Java Help
Java Beans
VBScript
Cobol
MAC Applications
Unix Programming
Forum Jump:
All times are GMT. The time now is 08:01 AM.

 
Free MCSE Braindumps | Real Estate Topics

Programming forum archive

Copyrights CodeComments.com 2004 - 2006

Powered by vBulletin Copyright 2000-2006 Jelsoft Enterprises Limited.