473,513 Members | 2,525 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Is it possible to client-side validate a calendar?

Hello.

Developing a VS2005, SP4, VB, .NET 2.0, ASP.NET 2.0, web site program using
a calendar.

I tried using the validators to see if i can validate dates using a calendar
control. It does not allow me to select the calendar control in the
drop-down list for the ControlToValidate property.

Is it possible to do client-side validation of calendar dates?

Any help would be gratefully appreciated.

Thanks,
Tony
Mar 26 '07 #1
6 3365
ua
On Mar 26, 7:55 am, "Tony Girgenti" <tony(nospam)@lakesideos.com>
wrote:
Hello.

Developing a VS2005, SP4, VB, .NET 2.0, ASP.NET 2.0, web site program using
a calendar.

I tried using the validators to see if i can validate dates using a calendar
control. It does not allow me to select the calendar control in the
drop-down list for the ControlToValidate property.

Is it possible to do client-side validation of calendar dates?

Any help would be gratefully appreciated.

Thanks,
Tony
Tony,

A solution that I have gone with is to use the CalendarExtender on a
TextBox provided by AJAX Controls available at: http://ajax.asp.net/toolkit/default.aspx.
This gives me the calendar functionality and then I just apply a
RegularExpressionValidator on the TextBox. My favorite feature of
this is that I don't have to use up this large space on the page to
display a Calendar and yet still maintain the Calendar Functionality I
desire.

I hope this helps.

Thanks,

Joshua

Mar 26 '07 #2
Hello Joshua.

I'm just getting into studying AJAX. That sounds like what i want.

If i use the AJAX control, do i have to have the AJAX program running on the
server when and where i go to install the finished product?

Thanks,
Tony

"ua" <jo********@gmail.comwrote in message
news:11*********************@n59g2000hsh.googlegro ups.com...
On Mar 26, 7:55 am, "Tony Girgenti" <tony(nospam)@lakesideos.com>
wrote:
>Hello.

Developing a VS2005, SP4, VB, .NET 2.0, ASP.NET 2.0, web site program
using
a calendar.

I tried using the validators to see if i can validate dates using a
calendar
control. It does not allow me to select the calendar control in the
drop-down list for the ControlToValidate property.

Is it possible to do client-side validation of calendar dates?

Any help would be gratefully appreciated.

Thanks,
Tony

Tony,

A solution that I have gone with is to use the CalendarExtender on a
TextBox provided by AJAX Controls available at:
http://ajax.asp.net/toolkit/default.aspx.
This gives me the calendar functionality and then I just apply a
RegularExpressionValidator on the TextBox. My favorite feature of
this is that I don't have to use up this large space on the page to
display a Calendar and yet still maintain the Calendar Functionality I
desire.

I hope this helps.

Thanks,

Joshua

Mar 26 '07 #3
"Tony Girgenti" <tony(nospam)@lakesideos.comwrote in message
news:eN**************@TK2MSFTNGP04.phx.gbl...
Developing a VS2005, SP4, VB, .NET 2.0, ASP.NET 2.0, web site
SP4...? SP4 of what...?
Mar 26 '07 #4
On 26 Mar, 23:11, "Tony Girgenti" <tony(nospam)@lakesideos.comwrote:
Hello Joshua.

I'm just getting into studying AJAX. That sounds like what i want.

If i use the AJAX control, do i have to have the AJAX program running on the
server when and where i go to install the finished product?

Thanks,
Tony

"ua" <joshuam...@gmail.comwrote in message

news:11*********************@n59g2000hsh.googlegro ups.com...
On Mar 26, 7:55 am, "Tony Girgenti" <tony(nospam)@lakesideos.com>
wrote:
Hello.
Developing a VS2005, SP4, VB, .NET 2.0, ASP.NET 2.0, web site program
using
a calendar.
I tried using the validators to see if i can validate dates using a
calendar
control. It does not allow me to select the calendar control in the
drop-down list for the ControlToValidate property.
Is it possible to do client-side validation of calendar dates?
Any help would be gratefully appreciated.
Thanks,
Tony
Tony,
A solution that I have gone with is to use the CalendarExtender on a
TextBox provided by AJAX Controls available at:
http://ajax.asp.net/toolkit/default.aspx.
This gives me the calendar functionality and then I just apply a
RegularExpressionValidator on the TextBox. My favorite feature of
this is that I don't have to use up this large space on the page to
display a Calendar and yet still maintain the Calendar Functionality I
desire.
I hope this helps.
Thanks,
Joshua- Hide quoted text -

- Show quoted text -
The CalendarExtender is very nice but you must install Microsoft AJAX
Extensions on the server in order to use it.
Mar 27 '07 #5
Hello Mark.

Hmmmm. So, is it worth it for me to use the CalendarExtender? I would have
to install the Microsoft AJAX Extensions on the server wherever i take my
program?

Thanks,
Tony

"mark4asp" <ma******@gmail.comwrote in message
news:11**********************@p15g2000hsd.googlegr oups.com...
On 26 Mar, 23:11, "Tony Girgenti" <tony(nospam)@lakesideos.comwrote:
>Hello Joshua.

I'm just getting into studying AJAX. That sounds like what i want.

If i use the AJAX control, do i have to have the AJAX program running on
the
server when and where i go to install the finished product?

Thanks,
Tony

"ua" <joshuam...@gmail.comwrote in message

news:11*********************@n59g2000hsh.googlegr oups.com...
On Mar 26, 7:55 am, "Tony Girgenti" <tony(nospam)@lakesideos.com>
wrote:
Hello.
>Developing a VS2005, SP4, VB, .NET 2.0, ASP.NET 2.0, web site program
using
a calendar.
>I tried using the validators to see if i can validate dates using a
calendar
control. It does not allow me to select the calendar control in the
drop-down list for the ControlToValidate property.
>Is it possible to do client-side validation of calendar dates?
>Any help would be gratefully appreciated.
>Thanks,
Tony
Tony,
A solution that I have gone with is to use the CalendarExtender on a
TextBox provided by AJAX Controls available at:
http://ajax.asp.net/toolkit/default.aspx.
This gives me the calendar functionality and then I just apply a
RegularExpressionValidator on the TextBox. My favorite feature of
this is that I don't have to use up this large space on the page to
display a Calendar and yet still maintain the Calendar Functionality I
desire.
I hope this helps.
Thanks,
Joshua- Hide quoted text -

- Show quoted text -

The CalendarExtender is very nice but you must install Microsoft AJAX
Extensions on the server in order to use it.


Mar 27 '07 #6
On 28 Mar, 00:13, "Tony Girgenti" <tony(nospam)@lakesideos.comwrote:
Hello Mark.

Hmmmm. So, is it worth it for me to use the CalendarExtender? I would have
to install the Microsoft AJAX Extensions on the server wherever i take my
program?

Thanks,
Tony

"mark4asp" <mark4...@gmail.comwrote in message

news:11**********************@p15g2000hsd.googlegr oups.com...
On 26 Mar, 23:11, "Tony Girgenti" <tony(nospam)@lakesideos.comwrote:
Hello Joshua.
I'm just getting into studying AJAX. That sounds like what i want.
If i use the AJAX control, do i have to have the AJAX program running on
the
server when and where i go to install the finished product?
Thanks,
Tony
"ua" <joshuam...@gmail.comwrote in message
>news:11*********************@n59g2000hsh.googlegr oups.com...
On Mar 26, 7:55 am, "Tony Girgenti" <tony(nospam)@lakesideos.com>
wrote:
Hello.
Developing a VS2005, SP4, VB, .NET 2.0, ASP.NET 2.0, web site program
using
a calendar.
I tried using the validators to see if i can validate dates using a
calendar
control. It does not allow me to select the calendar control in the
drop-down list for the ControlToValidate property.
Is it possible to do client-side validation of calendar dates?
Any help would be gratefully appreciated.
Thanks,
Tony
Tony,
A solution that I have gone with is to use the CalendarExtender on a
TextBox provided by AJAX Controls available at:
http://ajax.asp.net/toolkit/default.aspx.
This gives me the calendar functionality and then I just apply a
RegularExpressionValidator on the TextBox. My favorite feature of
this is that I don't have to use up this large space on the page to
display a Calendar and yet still maintain the Calendar Functionality I
desire.
I hope this helps.
Thanks,
Joshua- Hide quoted text -
- Show quoted text -
The CalendarExtender is very nice but you must install Microsoft AJAX
Extensions on the server in order to use it.- Hide quoted text -

- Show quoted text -
If you can install the Ajax extensions on the server then do it. Many
people don't have access to their server!

This Ajax Calender extender control is very nice, far better than the
old calender control.
Mar 28 '07 #7

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

Similar topics

6
5529
by: Sugapablo | last post by:
I had an idea for something that I can't find any evidence if it exists, or if it can be done. I assume it can be done. What I'd like to be able to do, is to allow people who come to my website,...
1
5399
by: Krist | last post by:
Hi All, Our customer has just decided to choose as development standard. The application is HR application with report. While many like Web client, Java application/thick client is still...
5
1315
by: Aaron | last post by:
Normally if you want to retreive some data say a html page you would have to send a request to the server. For example a stock ticker sends a request and the server sends back some data every...
2
5882
by: Francesco | last post by:
Hi everybody. I have a DB2 UDB Express on Windows system (Server: Win2003 - Client: WinXP Home Edition) Message of error (on client machine): IBM-Informix-DB2 Universal Database Express...
5
2192
by: Paul H | last post by:
How do you folks get a reliable and complete brief of what is required before development starts? I am forever going back to a client once a project has started saying "Hang on, now that I've...
2
2034
by: cedced | last post by:
Hello, is it possible to access client files in VB.NET? What? I have doing that but it isn't good (VB.NET take file on pc server and not on pc client): (thanks) Dim fichier As StreamReader ...
0
1716
by: petro | last post by:
I am trying to deploy an asp.net application to my web server. My application uses system.data.oledb to connect to an oracle database. On my development machine I have the oracle client 10g...
3
1769
by: Abhimanyu Sirohi | last post by:
I want my WebService to call a client's function whenever it receives a message from any of the client. A way of notifying all clients when any of the client send a message to the web service.
6
1986
by: Simon Harvey | last post by:
Hi everyone, We have a need to make a Windows Forms (2.0) client application that will be installed on our clients site. The data that the application uses needs to be centrally available to a...
3
2602
by: rjha94 | last post by:
Hi I just installed the runtime client on my windows machine. when i go inside the SQLLIB\bin folder i can see db2.exe. is it possible to use this db2 bundled with runtime client for command line...
0
7260
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
7539
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
7525
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
5686
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
4746
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
3234
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
3222
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
802
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
456
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.