473,408 Members | 2,113 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,408 software developers and data experts.

Javascript onClick question


Hi,

We have a form defined with buttons like this:

<a class="save_menu" href="javascript:document.Detail_Screen.action =
'savedata.php?screen=EDIT';document.Detail_Screen. submit();">Update</
a>

The form also has an onSubmit action to vall a validation routine:

<FORM name='Detail_Screen' action="savedata.php" METHOD="POST"
onsubmit='return formvalidation(this)'>

The problem is that the formvalidation routine is not being fired.

I'm at a loss here. Can anyone help us with this? At the end of the
javascript validation routine, we have this:

thisform.submit();

So, the form seems to submit, but not the way we want it to. We want
it to execute the validation routine first.....

Thank you.

John.
Jun 27 '08 #1
14 2143
<FORM name='Detail_Screen' action="savedata.php" METHOD="POST"
onsubmit='return formvalidation(this)'>

The problem is that the formvalidation routine is not being fired.

I'm at a loss here. Can anyone help us with this? At the end of the
javascript validation routine, we have this:

thisform.submit();
formvalidation should return TRUE or FALSE, depending on whether the
form's content is valid, or not.

If that doesn't help, please provide a more detailed code sample; an
ideal example would be a URL to a page demonstrating the problem
Jun 27 '08 #2
On Jun 1, 4:31 pm, Mtek <m...@mtekusa.comwrote:
Hi,

We have a form defined with buttons like this:

<a class="save_menu" href="javascript:document.Detail_Screen.action =
'savedata.php?screen=EDIT';document.Detail_Screen. submit();">Update</
a>
Why are you using an anchor element to submit a form? A submit input
or button would be the appropriate choice and works with JavaScript
disabled.
The form also has an onSubmit action to vall a validation routine:

<FORM name='Detail_Screen' action="savedata.php" METHOD="POST"
onsubmit='return formvalidation(this)'>
Single quotation marks around attribute values are not valid.
The problem is that the formvalidation routine is not being fired.

I'm at a loss here. Can anyone help us with this? At the end of the
javascript validation routine, we have this:

thisform.submit();
remove that
So, the form seems to submit, but not the way we want it to. We want
it to execute the validation routine first.....
How about something straight forward like this

<form name="Detail_Screen" action="savedata.php"
method="post" onsubmit="return formvalidation(this);">

<input type="submit" name="screen" value="EDIT">
</form>

If you really must have a link trigger the form submission then you
can do that but it seems very odd.

Peter
Jun 27 '08 #3
On Jun 1, 4:53 pm, Dan Rumney <danrum...@warpmail.netwrote:
<FORM name='Detail_Screen' action="savedata.php" METHOD="POST"
onsubmit='return formvalidation(this)'>
The problem is that the formvalidation routine is not being fired.
I'm at a loss here. Can anyone help us with this? At the end of the
javascript validation routine, we have this:
thisform.submit();

formvalidation should return TRUE or FALSE, depending on whether the
form's content is valid, or not.
JavaScript will type convert the return value of the onsubmit handler
to be a boolean. That type converted value will be used to determine
if the form should be submitted or not.
If that doesn't help, please provide a more detailed code sample; an
ideal example would be a URL to a page demonstrating the problem
Where that page is self-complete and only 30 to 40 lines long.

Peter
Jun 27 '08 #4
On Jun 1, 7:12*pm, Peter Michaux <petermich...@gmail.comwrote:
On Jun 1, 4:53 pm, Dan Rumney <danrum...@warpmail.netwrote:
<FORM name='Detail_Screen' action="savedata.php" METHOD="POST"
onsubmit='return formvalidation(this)'>
The problem is that the formvalidation routine is not being fired.
I'm at a loss here. *Can anyone help us with this? *At the end of the
javascript validation routine, we have this:
thisform.submit();
formvalidation should return TRUE or FALSE, depending on whether the
form's content is valid, or not.

JavaScript will type convert the return value of the onsubmit handler
to be a boolean. That type converted value will be used to determine
if the form should be submitted or not.
If that doesn't help, please provide a more detailed code sample; an
ideal example would be a URL to a page demonstrating the problem

Where that page is self-complete and only 30 to 40 lines long.

Peter

Well, the client wants the inmage button. And, as you can see, it is
not really an image, but a class. That is what they want, so that is
how I have to code it. The page submits and the data is saved, it
just does not call the javascript validation routine. That is where
my issue is.......

Making it a SUBMIT will not work since it is not a 'real' button.
Here is a clip of the code:

<FORM name='Detail_Screen' action="savedata.php" METHOD="POST"
onsubmit='return formvalidation(this)'>
.
.
<table class="menu" cellspacing=0>
<TR>
<td class="menu1"><a class="save_menu"
href="javascript:document.Detail_Screen.action = 'savedata.php?
screen=EDIT';document.Detail_Screen.submit();">Upd ate</a></td>
<td style="width:1px"><img src="../images/admin2/
separator_27h.gif"></td>
<td class="menu1"><a class="save_menu"
href="javascript:document.Detail_Screen.action = 'savedata.php?
screen=DELETE';document.Detail_Screen.submit();">D elete</a></td>
<td style="width:1px"><img src="../images/admin2/
separator_27h.gif"></td>
</tr>
</table>
.
.
</FORM>

Thanks for everyone's help so far.....

John
Jun 27 '08 #5
Making it a SUBMIT will not work since it is not a 'real' button.
Here is a clip of the code:

<FORM name='Detail_Screen' action="savedata.php" METHOD="POST"
onsubmit='return formvalidation(this)'>
.
.
Can you provide the source for 'formvalidation'?
Jun 27 '08 #6
On Jun 1, 8:54*pm, Dan Rumney <danrum...@77617270mail.netwrote:
Making it a SUBMIT will not work since it is not a 'real' button.
Here is a clip of the code:
<FORM name='Detail_Screen' action="savedata.php" METHOD="POST"
onsubmit='return formvalidation(this)'>
.
.

Can you provide the source for 'formvalidation'?

Here you go, and thanks!!

function formvalidation(thisform) {
if (emptyvalidation(thisform.CustName.value,"Customer Name is
empty")==false) {thisform.CustName.focus(); return false;};
if (emailvalidation(thisform.CustEmail.value,"Illegal E-
mail")==false) {thisform.CustEmail.focus(); return false;};

if (thisform.CellPhone.value==null || thisform.CellPhone.value==""
|| thisform.CellPhone.value==" ") {
thisform.CellPhone.value="000-000-0000";
} else {
if (phonevalidation(thisform.CellPhone.value,"Please enter a
valid cell phone")==false) {
thisform.CellPhone.focus(); return false;
};
};
thisform.submit();
}
Jun 27 '08 #7
On Jun 1, 6:46 pm, Mtek <m...@mtekusa.comwrote:
On Jun 1, 7:12 pm, Peter Michaux <petermich...@gmail.comwrote:
On Jun 1, 4:53 pm, Dan Rumney <danrum...@warpmail.netwrote:
<FORM name='Detail_Screen' action="savedata.php" METHOD="POST"
onsubmit='return formvalidation(this)'>
The problem is that the formvalidation routine is not being fired.
I'm at a loss here. Can anyone help us with this? At the end of the
javascript validation routine, we have this:
thisform.submit();
formvalidation should return TRUE or FALSE, depending on whether the
form's content is valid, or not.
JavaScript will type convert the return value of the onsubmit handler
to be a boolean. That type converted value will be used to determine
if the form should be submitted or not.
If that doesn't help, please provide a more detailed code sample; an
ideal example would be a URL to a page demonstrating the problem
Where that page is self-complete and only 30 to 40 lines long.
Peter

Well, the client wants the inmage button. And, as you can see, it is
not really an image, but a class. That is what they want, so that is
how I have to code it.
You can style a <button type="submit"element.

Peter
Jun 27 '08 #8
Here you go, and thanks!!
>
function formvalidation(thisform) {
if (emptyvalidation(thisform.CustName.value,"Customer Name is
empty")==false) {thisform.CustName.focus(); return false;};
if (emailvalidation(thisform.CustEmail.value,"Illegal E-
mail")==false) {thisform.CustEmail.focus(); return false;};

if (thisform.CellPhone.value==null || thisform.CellPhone.value==""
|| thisform.CellPhone.value==" ") {
thisform.CellPhone.value="000-000-0000";
} else {
if (phonevalidation(thisform.CellPhone.value,"Please enter a
valid cell phone")==false) {
thisform.CellPhone.focus(); return false;
};
};
thisform.submit();
}
Change "thisform.submit()" to "return true"

However, Reading you original post again, you wrote:
<a class="save_menu"
href="javascript:document.Detail_Screen.action='sa vedata.php?screen=EDIT';
document.Detail_Screen.submit();">Update</>a>
[snip]
At the end of the javascript validation routine, we have this:

thisform.submit();

So, the form seems to submit, but not the way we want it to. We want
it to execute the validation routine first.
So, I think you're saying "Why isn't validation performed when the user
clicks on Update?"

So, I believe this is an accurate description of what's happening. I've
looked for something to back it up, but all I can find are unreferenced
comments on the web.

The onSubmit Event Handler is is used to execute specified JavaScript
code whenever the *user* submits a form.

I believe the problem you have is that Javascript aclling the submit()
function is *not* the same as the user submitting the form. Thus the
onSubmit handler is not invoked.

In fact, this is why you calling submit() in your onSubmit handler does
not cause an infinite loop.

The resolution would be an explicit call to formvalidation()
.... something like:

<a class="save_menu"
href="javascript:document.Detail_Screen.action='sa vedata.php?screen=EDIT';
formvalidation(document.Detail_Screen) &&
document.Detail_Screen.submit();">Update</>a>
Jun 27 '08 #9
On Jun 1, 9:49*pm, Dan Rumney <danrum...@77617270mail.netwrote:
Here you go, and thanks!!
function formvalidation(thisform) {
* * if (emptyvalidation(thisform.CustName.value,"Customer Name is
empty")==false) {thisform.CustName.focus(); return false;};
* * if (emailvalidation(thisform.CustEmail.value,"Illegal E-
mail")==false) {thisform.CustEmail.focus(); return false;};
* * if (thisform.CellPhone.value==null || thisform.CellPhone.value==""
|| thisform.CellPhone.value==" ") {
* * * *thisform.CellPhone.value="000-000-0000";
* * } else {
* * * *if (phonevalidation(thisform.CellPhone.value,"Please enter a
valid cell phone")==false) {
* * * * * thisform.CellPhone.focus(); return false;
* * * *};
* * };
* * thisform.submit();
}

Change "thisform.submit()" to "return true"

However, Reading you original post again, you wrote:

*<a class="save_menu"
*>
href="javascript:document.Detail_Screen.action='sa vedata.php?screen=EDIT';
** * document.Detail_Screen.submit();">Update</>a>

[snip]

*At the end of the javascript validation routine, we have this:
*>
*thisform.submit();
*>
*So, the form seems to submit, but not the way we want it to. *We want
*it to execute the validation routine first.

So, I think you're saying "Why isn't validation performed when the user
clicks on Update?"

So, I believe this is an accurate description of what's happening. I've
looked for something to back it up, but all I can find are unreferenced
comments on the web.

The onSubmit Event Handler is is used to execute specified JavaScript
code whenever the *user* submits a form.

I believe the problem you have is that Javascript aclling the submit()
function is *not* the same as the user submitting the form. Thus the
onSubmit handler is not invoked.

In fact, this is why you calling submit() in your onSubmit handler does
not cause an infinite loop.

The resolution would be an explicit call to formvalidation()
... something like:

<a class="save_menu"
href="javascript:document.Detail_Screen.action='sa vedata.php?screen=EDIT';
formvalidation(document.Detail_Screen) &&
document.Detail_Screen.submit();">Update</>a>- Hide quoted text -

- Show quoted text -

Wow Dan! Almost perfect. After it displays the error message though,
it opens a blank page with the word 'false' on it.

Can you explain to me how that works with the &&???

Thanks, and, why does it open up a page with 'false'??

John
Jun 27 '08 #10
On Jun 1, 9:49*pm, Dan Rumney <danrum...@77617270mail.netwrote:
Here you go, and thanks!!
function formvalidation(thisform) {
* * if (emptyvalidation(thisform.CustName.value,"Customer Name is
empty")==false) {thisform.CustName.focus(); return false;};
* * if (emailvalidation(thisform.CustEmail.value,"Illegal E-
mail")==false) {thisform.CustEmail.focus(); return false;};
* * if (thisform.CellPhone.value==null || thisform.CellPhone.value==""
|| thisform.CellPhone.value==" ") {
* * * *thisform.CellPhone.value="000-000-0000";
* * } else {
* * * *if (phonevalidation(thisform.CellPhone.value,"Please enter a
valid cell phone")==false) {
* * * * * thisform.CellPhone.focus(); return false;
* * * *};
* * };
* * thisform.submit();
}

Change "thisform.submit()" to "return true"

However, Reading you original post again, you wrote:

*<a class="save_menu"
*>
href="javascript:document.Detail_Screen.action='sa vedata.php?screen=EDIT';
** * document.Detail_Screen.submit();">Update</>a>

[snip]

*At the end of the javascript validation routine, we have this:
*>
*thisform.submit();
*>
*So, the form seems to submit, but not the way we want it to. *We want
*it to execute the validation routine first.

So, I think you're saying "Why isn't validation performed when the user
clicks on Update?"

So, I believe this is an accurate description of what's happening. I've
looked for something to back it up, but all I can find are unreferenced
comments on the web.

The onSubmit Event Handler is is used to execute specified JavaScript
code whenever the *user* submits a form.

I believe the problem you have is that Javascript aclling the submit()
function is *not* the same as the user submitting the form. Thus the
onSubmit handler is not invoked.

In fact, this is why you calling submit() in your onSubmit handler does
not cause an infinite loop.

The resolution would be an explicit call to formvalidation()
... something like:

<a class="save_menu"
href="javascript:document.Detail_Screen.action='sa vedata.php?screen=EDIT';
formvalidation(document.Detail_Screen) &&
document.Detail_Screen.submit();">Update</>a>- Hide quoted text -

- Show quoted text -

Wow Dan! Almost perfect. After it displays the error message though,
it opens a blank page with the word 'false' on it. Also, now when it
calls the email validation function, I get an error: "entered.value
has no properties"

function emailvalidation(entered, alertbox) {
apos=entered.indexOf("@");
dotpos=entered.value.lastIndexOf(".");
lastpos=entered.length-1;
if (apos<1 || dotpos-apos<2 || lastpos-dotpos>3 || lastpos-
dotpos<2)
{if (alertbox) {alert(alertbox);} return false;}
else {return true;}
}

Thanks for everyone's help so far.

John

Jun 27 '08 #11
On Jun 1, 9:49*pm, Dan Rumney <danrum...@77617270mail.netwrote:
Here you go, and thanks!!
function formvalidation(thisform) {
* * if (emptyvalidation(thisform.CustName.value,"Customer Name is
empty")==false) {thisform.CustName.focus(); return false;};
* * if (emailvalidation(thisform.CustEmail.value,"Illegal E-
mail")==false) {thisform.CustEmail.focus(); return false;};
* * if (thisform.CellPhone.value==null || thisform.CellPhone.value==""
|| thisform.CellPhone.value==" ") {
* * * *thisform.CellPhone.value="000-000-0000";
* * } else {
* * * *if (phonevalidation(thisform.CellPhone.value,"Please enter a
valid cell phone")==false) {
* * * * * thisform.CellPhone.focus(); return false;
* * * *};
* * };
* * thisform.submit();
}

Change "thisform.submit()" to "return true"

However, Reading you original post again, you wrote:

*<a class="save_menu"
*>
href="javascript:document.Detail_Screen.action='sa vedata.php?screen=EDIT';
** * document.Detail_Screen.submit();">Update</>a>

[snip]

*At the end of the javascript validation routine, we have this:
*>
*thisform.submit();
*>
*So, the form seems to submit, but not the way we want it to. *We want
*it to execute the validation routine first.

So, I think you're saying "Why isn't validation performed when the user
clicks on Update?"

So, I believe this is an accurate description of what's happening. I've
looked for something to back it up, but all I can find are unreferenced
comments on the web.

The onSubmit Event Handler is is used to execute specified JavaScript
code whenever the *user* submits a form.

I believe the problem you have is that Javascript aclling the submit()
function is *not* the same as the user submitting the form. Thus the
onSubmit handler is not invoked.

In fact, this is why you calling submit() in your onSubmit handler does
not cause an infinite loop.

The resolution would be an explicit call to formvalidation()
... something like:

<a class="save_menu"
href="javascript:document.Detail_Screen.action='sa vedata.php?screen=EDIT';
formvalidation(document.Detail_Screen) &&
document.Detail_Screen.submit();">Update</>a>- Hide quoted text -

- Show quoted text -

Thanks Dan.

When I put your code in and submit the form, I get the validation
error message I am supposed to, but then the page changes with only
the word 'false' on it.

Also, when it executes the routine to validate the email, I get this
"entered.value has no properties"

function emailvalidation(entered, alertbox) {
apos=entered.value.indexOf("@");
dotpos=entered.value.lastIndexOf(".");
lastpos=entered.length-1;
if (apos<1 || dotpos-apos<2 || lastpos-dotpos>3 || lastpos-
dotpos<2)
{if (alertbox) {alert(alertbox);} return false;}
else {return true;}
}

Thanks again for your help.

John
Jun 27 '08 #12
On Jun 1, 9:49*pm, Dan Rumney <danrum...@77617270mail.netwrote:
Here you go, and thanks!!
function formvalidation(thisform) {
* * if (emptyvalidation(thisform.CustName.value,"Customer Name is
empty")==false) {thisform.CustName.focus(); return false;};
* * if (emailvalidation(thisform.CustEmail.value,"Illegal E-
mail")==false) {thisform.CustEmail.focus(); return false;};
* * if (thisform.CellPhone.value==null || thisform.CellPhone.value==""
|| thisform.CellPhone.value==" ") {
* * * *thisform.CellPhone.value="000-000-0000";
* * } else {
* * * *if (phonevalidation(thisform.CellPhone.value,"Please enter a
valid cell phone")==false) {
* * * * * thisform.CellPhone.focus(); return false;
* * * *};
* * };
* * thisform.submit();
}

Change "thisform.submit()" to "return true"

However, Reading you original post again, you wrote:

*<a class="save_menu"
*>
href="javascript:document.Detail_Screen.action='sa vedata.php?screen=EDIT';
** * document.Detail_Screen.submit();">Update</>a>

[snip]

*At the end of the javascript validation routine, we have this:
*>
*thisform.submit();
*>
*So, the form seems to submit, but not the way we want it to. *We want
*it to execute the validation routine first.

So, I think you're saying "Why isn't validation performed when the user
clicks on Update?"

So, I believe this is an accurate description of what's happening. I've
looked for something to back it up, but all I can find are unreferenced
comments on the web.

The onSubmit Event Handler is is used to execute specified JavaScript
code whenever the *user* submits a form.

I believe the problem you have is that Javascript aclling the submit()
function is *not* the same as the user submitting the form. Thus the
onSubmit handler is not invoked.

In fact, this is why you calling submit() in your onSubmit handler does
not cause an infinite loop.

The resolution would be an explicit call to formvalidation()
... something like:

<a class="save_menu"
href="javascript:document.Detail_Screen.action='sa vedata.php?screen=EDIT';
formvalidation(document.Detail_Screen) &&
document.Detail_Screen.submit();">Update</>a>- Hide quoted text -

- Show quoted text -

Hi Dan,

Your suggestion seems to work. I had to change a few things. But
when I submit the form, it something fails the validation, it gives
the proper error message, but then a new page appears with only the
word 'false' on it........

On another note, I do not understand why sometimes I can refer to a
parameter by name, and other times I need parameter.value.........

Thanks again!!!

John
Jun 27 '08 #13
Peter Michaux wrote:
On Jun 1, 4:53 pm, Dan Rumney <danrum...@warpmail.netwrote:
>><FORM name='Detail_Screen' action="savedata.php" METHOD="POST"
onsubmit='return formvalidation(this)'>
The problem is that the formvalidation routine is not being fired.
I'm at a loss here. Can anyone help us with this? At the end of the
javascript validation routine, we have this:
thisform.submit();
formvalidation should return TRUE or FALSE, depending on whether the
form's content is valid, or not.

JavaScript will type convert the return value of the onsubmit handler
to be a boolean. [...]
How would you know?
PointedEars
--
Prototype.js was written by people who don't know javascript for people
who don't know javascript. People who don't know javascript are not
the best source of advice on designing systems that use javascript.
-- Richard Cornford, cljs, <f8*******************@news.demon.co.uk>
Jun 27 '08 #14
On Jun 1, 11:25 pm, Mtek <m...@mtekusa.comwrote:
On Jun 1, 9:49 pm, Dan Rumney <danrum...@77617270mail.netwrote:
Here you go, and thanks!!
function formvalidation(thisform) {
if (emptyvalidation(thisform.CustName.value,"Customer Name is
empty")==false) {thisform.CustName.focus(); return false;};
if (emailvalidation(thisform.CustEmail.value,"Illegal E-
mail")==false) {thisform.CustEmail.focus(); return false;};
if (thisform.CellPhone.value==null || thisform.CellPhone.value==""
|| thisform.CellPhone.value==" ") {
thisform.CellPhone.value="000-000-0000";
} else {
if (phonevalidation(thisform.CellPhone.value,"Please enter a
valid cell phone")==false) {
thisform.CellPhone.focus(); return false;
};
};
thisform.submit();
}
Change "thisform.submit()" to "return true"
However, Reading you original post again, you wrote:
<a class="save_menu"
>
href="javascript:document.Detail_Screen.action='sa vedata.php?screen=EDIT';
document.Detail_Screen.submit();">Update</>a>
[snip]
At the end of the javascript validation routine, we have this:
>
thisform.submit();
>
So, the form seems to submit, but not the way we want it to. We want
it to execute the validation routine first.
So, I think you're saying "Why isn't validation performed when the user
clicks on Update?"
So, I believe this is an accurate description of what's happening. I've
looked for something to back it up, but all I can find are unreferenced
comments on the web.
The onSubmit Event Handler is is used to execute specified JavaScript
code whenever the *user* submits a form.
I believe the problem you have is that Javascript aclling the submit()
function is *not* the same as the user submitting the form. Thus the
onSubmit handler is not invoked.
In fact, this is why you calling submit() in your onSubmit handler does
not cause an infinite loop.
The resolution would be an explicit call to formvalidation()
... something like:
<a class="save_menu"
href="javascript:document.Detail_Screen.action='sa vedata.php?screen=EDIT';
formvalidation(document.Detail_Screen) &&
document.Detail_Screen.submit();">Update</>a>- Hide quoted text -
- Show quoted text -

Hi Dan,

Your suggestion seems to work. I had to change a few things. But
when I submit the form, it something fails the validation, it gives
the proper error message, but then a new page appears with only the
word 'false' on it........
Try:
<a class="save_menu"
href="javascript:function()
{document.Detail_Screen.action='savedata.php?scree n=EDIT';
formvalidation(document.Detail_Screen) &&
document.Detail_Screen.submit();}">Update</a>

Or, better still
<span class="save_menu"
onClick="function(){document.Detail_Screen.action= 'savedata.php?
screen=EDIT';
formvalidation(document.Detail_Screen) &&
document.Detail_Screen.submit();}">Update</span>

Or, style a submit button as Peter suggests...
On another note, I do not understand why sometimes I can refer to a
parameter by name, and other times I need parameter.value.........
Probably best to start a new post for that question
Jun 27 '08 #15

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

Similar topics

5
by: Lucian Sandor | last post by:
Hello everyone, While I'm a newbie here, I a not new to google, so please don't send me back, it would be useless. First of all I have to specify I am working on a Blogger.com template, therefore...
2
by: not | last post by:
Hello All, I am trying to develop a relatively simple self-quiz form in javascript, but I'm having no luck getting it to work. What I am looking for is a script that allow the user to select...
0
by: Michelle Keys | last post by:
I am trying to call a print function to print a string from a database using javascript. Which is RC_DATA of Varchar2(2500). This is a javascript is not being used. I have a thing that needs to...
8
by: chrisdude911 | last post by:
how do i add video into a javascript web page with my own custom buttons?
7
by: Papelotte | last post by:
Hi all, I'm new to this forum and I am hoping that there is someone here who can help me. I have an ASP page that has javascript that works perfectly in IE, but not in Firefox. Can anybody tell...
8
by: rn5a | last post by:
I have gone through a no. of posts in this NewsGroup regarding my problem but alas, couldn't come across one which would have helped me in resolving the issue. My problem is this: An ASPX Form...
16
by: Tony Girgenti | last post by:
Hello. I just finished reading two articles about javascript here: http://msdn2.microsoft.com/en-us/library/bb332123(VS.80).aspx I tried some javascript testing in VS2005, SP1, VB , .NET 2.0,...
11
by: nitha | last post by:
hi there...i need help... just wondering how to put a function? this is the form: <form> <p>Room type:<br/> <input type="radio" id="room1" name="room" onclick="roomCost=150"...
1
by: Van Dugall | last post by:
Hello I have been writing a game in javascript which works fine but I wanted to step it up and request the data of the game from the server. I haven't really used php...all I know is from the...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
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
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
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...
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...

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.