473,466 Members | 2,016 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

global variables

I'm a beginner in using javascript and i need a reply so urgent;
i have a problem in using javascript with asp the problem is that i
want to define a global variable and then change the value of it after
clicking on a link which activate a function that changes the global
variable. this variable i use as the value of a hidden field in a form.
my problem is that the global variable dosen't change.
this is the code i used to do this:

//the function which shows a layer and changes the variable
<script>
var month_na=0;//global variable
function show_layer(month_no)
{
month_na=month_no;
document.getElementById("layern").style.visibility ="visible";
return month_na;
}
</script>

//the link code <%=rs_trans_mo(0)%> is asp code and is evaluated to 3
<a onclick="show_layer(<%=rs_trans_mo(0)%>);" style="color:
#0000FF;cursor:hand;">+</a>

//the form that uses the global variable
<td id="layern" style="visibility:hidden;" nowrap>
<form method="POST" action="insert_trans.asp">
day: <input type="text" name="day_no" size="20">
<p>main rate:<input type="text" name="main_rate" size="20"></p>
<p>paid rate:<input type="text" name="paid_rate" size="20"></p>
<p><input type="submit" value="Submit" name="B1"></p>
<script language=javascript>
//the hidden field used to send the global variable to the
insert_trans.asp page
if (month_na!=0)
{document.write ('<input type="hidden" name="month_no"
value="'+month_na+'">');}
</script>
<input type="hidden" name="year_no" value="<%=year_no%>">
</form>
</td>

logically this code must work but i don't know why it dosen't. plz try
to reply ass soon as possible coz i need this very urgently.
thank u all

Jul 23 '05 #1
6 3914
Soha wrote:
I'm a beginner in using javascript and i need a reply so urgent;
i have a problem in using javascript with asp the problem is that i
want to define a global variable and then change the value of it after
clicking on a link which activate a function that changes the global
variable. this variable i use as the value of a hidden field in a form.
my problem is that the global variable dosen't change.
this is the code i used to do this:

//the function which shows a layer and changes the variable
<script>
var month_na=0;//global variable
function show_layer(month_no)
{
month_na=month_no;
document.getElementById("layern").style.visibility ="visible";
return month_na;
}
</script>

//the link code <%=rs_trans_mo(0)%> is asp code and is evaluated to 3
<a onclick="show_layer(<%=rs_trans_mo(0)%>);" style="color:
#0000FF;cursor:hand;">+</a>

//the form that uses the global variable
<td id="layern" style="visibility:hidden;" nowrap>
<form method="POST" action="insert_trans.asp">
day: <input type="text" name="day_no" size="20">
<p>main rate:<input type="text" name="main_rate" size="20"></p>
<p>paid rate:<input type="text" name="paid_rate" size="20"></p>
<p><input type="submit" value="Submit" name="B1"></p>
<script language=javascript>
//the hidden field used to send the global variable to the
insert_trans.asp page
if (month_na!=0)
{document.write ('<input type="hidden" name="month_no"
value="'+month_na+'">');}
</script>
<input type="hidden" name="year_no" value="<%=year_no%>">
</form>
</td>
If you make month_no a visible field, you will see that it is never
changed because nothing in your code changes it. What you need instead
of a global variable is to simply update the hidden field.

In the future, please do not post your ASP code, its irrelevant. When
posting code, post the code that is transmitted to the browser.
logically this code must work but i don't know why it dosen't.


It works, it just doesn't do what you want it to do.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Jul 23 '05 #2
> It works, it just doesn't do what you want it to do.
I know that it dosen't do what i want that's why i post this code.
I just want to know what u mean with update the hidden field?

and sorry for posting the asp code and here is the code that is
transmited to the browser:

//the function which shows a layer and changes the variable
<script>
var month_na=0;
function show_layer(month_no)
{
month_na=month_no;
document.getElementById("layern").style.visibility ="visible";
return month_na;
}
</script>
//the link code
<a onclick="show_layer(3);" style="color: #0000FF;cursor:hand;">+</a>
//the form that uses the global variable and it is shown only when the
user click on the link
<td id="layern" style="visibility:hidden;" nowrap>
<form method="POST" action="insert_trans.asp">
day: <input type="text" name="day_no" size="20">
<p>main rate:<input type="text" name="main_rate" size="20"></p>
<p>paid rate:<input type="text" name="paid_rate" size="20"></p>
<p><input type="submit" value="Submit" name="B1"></p>
//the hidden field used to send the global variable to the
insert_trans.asp page
<script language=javascript>
if (month_na!=0){
document.write ('<input type="hidden" name="month_no"
value="'+month_na+'">');}</script>
<input type="hidden" name="year_no" value="2000">
</form>
</td>

Jul 23 '05 #3
> It works, it just doesn't do what you want it to do.
I know that it doesn't do what i want it to do that's why i post this
problem
Sorry for the asp code and here is the code again without the asp code

//the function which shows a layer and changes the variable
<script>
var month_na=0;//global variable
function show_layer(month_no)
{
month_na=month_no;
document.getElementById("layern").style.visibility ="visible"*;
return month_na;
}
</script>
//the link code
<a onclick="show_layer(3);" style="color: #0000FF;cursor:hand;">+</a>
//the form that uses the global variable
<td id="layern" style="visibility:hidden;" nowrap>
<form method="POST" action="insert_trans.asp">
day: <input type="text" name="day_no" size="20">
<p>main rate:<input type="text" name="main_rate" size="20"></p>
<p>paid rate:<input type="text" name="paid_rate" size="20"></p>
<p><input type="submit" value="Submit" name="B1"></p>
<script language=javascript>
//the hidden field used to send the global variable to the
insert_trans.asp page
if (month_na!=0)
{document.write ('<input type="hidden" name="month_no"
value="'+month_na+'">');}
</script>
<input type="hidden" name="year_no" value="2000">
</form>
</td>

i just want to know what you mean with :
update the hidden field


And thank you

Jul 23 '05 #4
Soha wrote:
It works, it just doesn't do what you want it to do.


I know that it doesn't do what i want it to do that's why i post this
problem
Sorry for the asp code and here is the code again without the asp code

//the function which shows a layer and changes the variable
<script>
var month_na=0;//global variable
function show_layer(month_no)
{
month_na=month_no;
document.getElementById("layern").style.visibility ="visible"*;
return month_na;
}
</script>
//the link code
<a onclick="show_layer(3);" style="color: #0000FF;cursor:hand;">+</a>
//the form that uses the global variable
<td id="layern" style="visibility:hidden;" nowrap>
<form method="POST" action="insert_trans.asp">
day: <input type="text" name="day_no" size="20">
<p>main rate:<input type="text" name="main_rate" size="20"></p>
<p>paid rate:<input type="text" name="paid_rate" size="20"></p>
<p><input type="submit" value="Submit" name="B1"></p>
<script language=javascript>
//the hidden field used to send the global variable to the
insert_trans.asp page
if (month_na!=0)
{document.write ('<input type="hidden" name="month_no"
value="'+month_na+'">');}
</script>
<input type="hidden" name="year_no" value="2000">
</form>
</td>

i just want to know what you mean with :
update the hidden field

And thank you

<script type="text/javascript">
function show_layer(month_no)
{
document.getElementById("layern").style.visibility ="visible"*;
//updates the hidden field:
document.forms['myForm'].elements['month_no'].value = month_no;
}
</script>
//the link code
<a onclick="show_layer(3);" style="color: #0000FF;cursor:hand;">+</a>
[note]A link that goes nowhere (not even an href attribute) is invalid
[note]HTML but it also makes your pages inaccessible to non-JS people.

<td id="layern" style="visibility:hidden;" nowrap>
<form method="POST" action="insert_trans.asp" name="myForm">
day: <input type="text" name="day_no" size="20">
<p>main rate:<input type="text" name="main_rate" size="20"></p>
<p>paid rate:<input type="text" name="paid_rate" size="20"></p>
<p><input type="submit" value="Submit" name="B1"></p>

[note]No need to dynamically insert the hidden field, just hard code it.

<input type="hidden" name="month_no" value="1">

<input type="hidden" name="year_no" value="2000">
</form>
</td>

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Jul 23 '05 #5
Soha wrote:
It works, it just doesn't do what you want it to do.

I know that it doesn't do what i want it to do that's
why i post this problem

<snip>

The point is that when what code does doesn't correspond with what it is
intended to do the intention cannot be deduced form the code. You have
to actually say what it is that would qualify as "working", because the
computer is going to do exactly what you programmed it to do regardless
of intentions and so code, as such, always "works".

Richard.
Jul 23 '05 #6
Thank u so much for your help. now the code works the same way i wanted

Jul 23 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

10
by: Matt | last post by:
Greetings, What are people's thoughts on global variables in C++? Why are we taught not to use them in programming? Is it true that if you are running two copies of the C program one copy can...
4
by: Andrew V. Romero | last post by:
I have been working on a function which makes it easier for me to pull variables from the URL. So far I have: <script language="JavaScript"> var variablesInUrl; var vArray = new Array(); ...
12
by: David WOO | last post by:
Hi, I am a newbie on C++, I need to define some global variables which should be accessible to most classes. In the mean time, I don't won't the global variables be modified freely at most of...
2
by: Bryan Parkoff | last post by:
….I would like to know which is the best optimization to use global variable or global struct. I always tell C/C++ Compiler to turn on optimization. ….I use underscore between first name and...
17
by: MLH | last post by:
A97 Topic: If there is a way to preserve the values assigned to global variables when an untrapped runtime error occurs? I don't think there is, but I thought I'd ask. During development, I'm...
33
by: MLH | last post by:
I've read some posts indicating that having tons of GV's in an Access app is a bad idea. Personally, I love GVs and I use them (possibly abuse them) all the time for everything imaginable - have...
9
by: CDMAPoster | last post by:
About a year ago there was a thread about the use of global variables in A97: http://groups.google.com/group/comp.databases.ms-access/browse_frm/thread/fedc837a5aeb6157 Best Practices by Kang...
5
by: Sandman | last post by:
I dont think I understand them. I've read the section on scope in the manual inside out. I'm running PHP 5.2.0 Here is the code I'm working on: //include_me.php <?php $MYVAR = array(); global...
1
weaknessforcats
by: weaknessforcats | last post by:
C++: The Case Against Global Variables Summary This article explores the negative ramifications of using global variables. The use of global variables is such a problem that C++ architects have...
112
by: istillshine | last post by:
When I control if I print messages, I usually use a global variable "int silent". When I set "-silent" flag in my command line parameters, I set silent = 1 in my main.c. I have many functions...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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...
0
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...
0
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...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
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...
0
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...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

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.