473,396 Members | 1,827 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,396 software developers and data experts.

I need some help

I have a web application built in .NET Framework 1.1. The application has
alot of content so I need to avoid postback at all costs.

The application has a javascript file which handles disabling and enabling
controls based on specific values of other controls.

I also have alot of ASP.NET validation controls which are executed when you
click the submit button.

My problem is that in the ASP.NET validations I need to know if that control
is currently disabled or enabled to know which type of validation to perform.

I have researched this problem and have seen peoples solutions by using
document.getElementById("control").setAttribute("d isabled","true") to mimic
the way .NET handles the enabled property. But I have had no luck attempting
it using this way. I also placed span tags around my controls and used
document.getElementById("control").parentElement.s etAttribute("disabled","true") but still no luck.

I have a last resort of having tons of hidden textboxes that I can
read/write through javascript or .NET to tell what the status is but this is
a ugly solution which I would like to avoid.

If javascript appends disabled as an attribute to the input control why cant
..NET be aware of that change in the controls attributes properties?

--
Regards,
Shaun Goldston

Liberalism is treason!
Vote Republican
Jun 15 '06 #1
3 1134
Are you speaking about the client side scripts of the ASP.NET validators?

A_Republican wrote:
I have a web application built in .NET Framework 1.1. The application has
alot of content so I need to avoid postback at all costs.

The application has a javascript file which handles disabling and enabling
controls based on specific values of other controls.

I also have alot of ASP.NET validation controls which are executed when you
click the submit button.

My problem is that in the ASP.NET validations I need to know if that control
is currently disabled or enabled to know which type of validation to perform.

I have researched this problem and have seen peoples solutions by using
document.getElementById("control").setAttribute("d isabled","true") to mimic
the way .NET handles the enabled property. But I have had no luck attempting
it using this way. I also placed span tags around my controls and used
document.getElementById("control").parentElement.s etAttribute("disabled","true") but still no luck.

I have a last resort of having tons of hidden textboxes that I can
read/write through javascript or .NET to tell what the status is but this is
a ugly solution which I would like to avoid.

If javascript appends disabled as an attribute to the input control why cant
.NET be aware of that change in the controls attributes properties?

Jun 15 '06 #2
No. It's the server-side validation controls that I am using, and within them
I need access to see if javascript has disabled the control.
--
Regards,
Shaun Goldston

Liberalism is treason!
Vote Republican
"Ray Booysen" wrote:
Are you speaking about the client side scripts of the ASP.NET validators?

A_Republican wrote:
I have a web application built in .NET Framework 1.1. The application has
alot of content so I need to avoid postback at all costs.

The application has a javascript file which handles disabling and enabling
controls based on specific values of other controls.

I also have alot of ASP.NET validation controls which are executed when you
click the submit button.

My problem is that in the ASP.NET validations I need to know if that control
is currently disabled or enabled to know which type of validation to perform.

I have researched this problem and have seen peoples solutions by using
document.getElementById("control").setAttribute("d isabled","true") to mimic
the way .NET handles the enabled property. But I have had no luck attempting
it using this way. I also placed span tags around my controls and used
document.getElementById("control").parentElement.s etAttribute("disabled","true") but still no luck.

I have a last resort of having tons of hidden textboxes that I can
read/write through javascript or .NET to tell what the status is but this is
a ugly solution which I would like to avoid.

If javascript appends disabled as an attribute to the input control why cant
.NET be aware of that change in the controls attributes properties?

Jun 15 '06 #3
> No. It's the server-side validation controls that I am using, and within them
I need access to see if javascript has disabled the control.
When the page is posted back, only actual values of controls will be
sent; the properties of DOM objects [i.e. whether they are
enabled/etc.] are not posted by the browser, and you must use a
separate mechanism to ensure that the server gets this data if it needs
it.

You could probably have the client-side code construct a single string
the contains an indication of whether each control is enabled, and then
just post that back with the request and inspect it on the server side.
That would only require a relatively small amount of data to be
transferred, and would not slow down either the client or the server
massively [if it does, you perhaps need to consider splitting your form
up into smaller bits!]

-- PH

"Ray Booysen" wrote:
Are you speaking about the client side scripts of the ASP.NET validators?

A_Republican wrote:
I have a web application built in .NET Framework 1.1. The application has
alot of content so I need to avoid postback at all costs.

The application has a javascript file which handles disabling and enabling
controls based on specific values of other controls.

I also have alot of ASP.NET validation controls which are executed when you
click the submit button.

My problem is that in the ASP.NET validations I need to know if that control
is currently disabled or enabled to know which type of validation to perform.
[snip]


Jun 16 '06 #4

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

Similar topics

6
by: mike | last post by:
Hello, After trying to validate this page for a couple of days now I was wondering if someone might be able to help me out. Below is a list of snippets where I am having the errors. 1. Line 334,...
5
by: John Flynn | last post by:
hi all i'm going to be quick i have an assignment due which i have no idea how to do. i work full time so i dont have the time to learn it and its due date has crept up on me .. As follows:...
0
by: xunling | last post by:
i have a question about answering ..... this topic is "need help" what do i have to write at te topic line, !after i have klicked the "answer message" button ive tried many possibilities,...
9
by: sk | last post by:
I have an applicaton in which I collect data for different parameters for a set of devices. The data are entered into a single table, each set of name, value pairs time-stamped and associated with...
7
by: Timothy Shih | last post by:
Hi, I am trying to figure out how to use unmanaged code using P/Invoke. I wrote a simple function which takes in 2 buffers (one a byte buffer, one a char buffer) and copies the contents of the byte...
15
by: Cheryl Langdon | last post by:
Hello everyone, This is my first attempt at getting help in this manner. Please forgive me if this is an inappropriate request. I suddenly find myself in urgent need of instruction on how to...
16
by: pamelafluente | last post by:
I am still working with no success on that client/server problem. I need your help. I will submit simplified versions of my problem so we can see clearly what is going on. My model: A client...
8
by: skumar434 | last post by:
i need to store the data from a data base in to structure .............the problem is like this ....suppose there is a data base which stores the sequence no and item type etc ...but i need only...
0
by: U S Contractors Offering Service A Non-profit | last post by:
Brilliant technology helping those most in need Inbox Reply U S Contractors Offering Service A Non-profit show details 10:37 pm (1 hour ago) Brilliant technology helping those most in need ...
20
by: mike | last post by:
I help manage a large web site, one that has over 600 html pages... It's a reference site for ham radio folks and as an example, one page indexes over 1.8 gb of on-line PDF documents. The site...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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:
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
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
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.