473,397 Members | 2,033 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,397 software developers and data experts.

Client-side validation of controls

Hi all,

I have a situation in which I need to verify that either of two textboxes
contain an entry; I'm initially uninterested in whether or not the entries
are valid, only that there is at least one entry. The validity of the entry
will be checked when I first post back the data to the server, but I don't
want to perform a postback if both textboxes are empty.

My initial thought is to write a simple javascript function to return true
if there's an entry in either box or return false if both boxes are empty. I
could then call this function from another javascript function that would
intercept the onclick event for my form's pushbutton. The problem I'm
encountering is I can't get a javascript function to work for the button's
onclick event. I created a function called ButtonClicked and have it wired
up the the button's onclick event by stating 'onclick="ButtonClicked"' in the
html code for the pushbutton, but I don't know where or how to obtain the
Object and the EventArgs my code-behind handler expects for the pushbutton.

Does anyone have a brief example or can anyone point me where I can find one?

Thanks!
May 27 '07 #1
1 846
"AlBruAn" <al*****@hotmail.com.(donotspam)wrote in message
news:74**********************************@microsof t.com...
Does anyone have a brief example or can anyone point me where I can find
one?
<script type="text/javascript">
function validateForm()
{
if
(document.getElementById('<%=txtTextBox1.ClientID% >').value.length == 0
&& document.getElementById('<%=txtTextBox2.ClientID%> ').value.length
== 0)
{
alert('Both textboxes cannot be blank');
return false;
}
}
</script>

<form id="frmDefault" runat="server">
<asp:TextBox ID="txtTextBox1" runat="server" /><br />
<asp:TextBox ID="txtTextBox2" runat="server" /><br />
<asp:Button ID="cmdSave" runat="server" Text="Save"
OnClick="cmdSave_Click" OnClientClick="return validateForm();" />
</form>
--
http://www.markrae.net

May 27 '07 #2

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

Similar topics

2
by: Raquel | last post by:
How do I know whether the 'runtime client' and the 'application development client' are installed on my machine? When I issue the command "db2licm -l", it gives the following output: Product...
2
by: Rhino | last post by:
I am trying to verify that I correctly understand something I saw in the DB2 Information Center. I am running DB2 Personal Edition V8.2.1 on Windows. I came across the following in the Info...
0
by: Harley | last post by:
Hello, I am just learning the tcp/ip functions etc under vb.net so please look over me if this is obviouse. I have been all over looking into any functions that I didn't totaly understand and...
8
by: Ankit Aneja | last post by:
i am doing here some some socket-client work in C# windows service it is working fine for multiple clients now i want to limit these multiple clients to 25 for example i want that when service...
2
by: Delmar | last post by:
I need to build Web Application that will generate a client to execute some operations. Each client has running silent application. Maybe somebody can advice me what can I do ? Thank you.
14
by: Ankit Aneja | last post by:
The code of classes given below is for server to which clients connect i want to get ip address of client which has connected pls help how can i get //listen class public class listen {
2
by: J Huntley Palmer | last post by:
I am having a horrific time integrating uw-imap's c-client for imap support in php. The problem is a whole bunch of "Text relocation remains referenced against symbol" errors during linking....
0
by: khu84 | last post by:
Here is client server very simple code, seems to work with telnet but with with web client code gives blank output. Following is the server code:- <?php function...
2
by: nsaffary | last post by:
hi I hava a client/server program that run correctly when i run it in one computer(local) but when I run client on a one computer and run server run on another, connection does not stablish.(I set...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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,...
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
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,...

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.