473,513 Members | 2,561 Online
Bytes | Software Development & Data Engineering Community
+ 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 3923
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
17831
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
24161
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
5858
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
5171
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
5591
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
2990
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
8620
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
11800
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
29312
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
5351
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
7259
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7158
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
7380
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,...
1
7098
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...
1
5085
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
4745
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
3232
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
1592
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 ...
0
455
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...

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.