473,657 Members | 2,449 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Validation client javascript error

In the file WebUIValidation .js, when a postback that
doesn't fail the validation has a javascript error saying
summary is undefined in the ValidationSumma ryOnSubmit
function. Page_Validation Summaries has a length of 1 but
there are no array entries.

This is the line that fails:

summary.style.d isplay = "none";

TIA,
Gary Varga
Nov 17 '05 #1
3 3034
Hi Gary,

In order to help you, I need to recreate this problem on my own machine.
What are the steps for setting up a page that will generate this error?

Thank you, Mike Moore
Microsoft, ASP.NET

This posting is provided "AS IS", with no warranties, and confers no rights.
--------------------
Content-Class: urn:content-classes:message
From: "Gary Varga" <MS**@VargaLtd. com>
Sender: "Gary Varga" <MS**@VargaLtd. com>
Subject: Validation client javascript error
Date: Wed, 27 Aug 2003 06:30:04 -0700
Lines: 12
Message-ID: <0d************ *************** *@phx.gbl>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcNsn1L2OZnmTDr gR4SJMhBem5YJYA ==
Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
Path: cpmsftngxa06.ph x.gbl
Xref: cpmsftngxa06.ph x.gbl microsoft.publi c.dotnet.framew ork.aspnet:1718 46
NNTP-Posting-Host: TK2MSFTNGXA11 10.40.1.163
X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet

In the file WebUIValidation .js, when a postback that
doesn't fail the validation has a javascript error saying
summary is undefined in the ValidationSumma ryOnSubmit
function. Page_Validation Summaries has a length of 1 but
there are no array entries.

This is the line that fails:

summary.style.d isplay = "none";

TIA,
Gary Varga


Nov 17 '05 #2
Thanks for the reply, Mike.

I have a control derived from ValidationSumma ry in a dll.
I used this in a user control and included it in a page.
This page is derived from a class which itself derives
from System.Web.UI.P age.

I can send you the dll and the updated WebUIValidation .js
document - yes I have added to this in one place, I added
a new display type - if you want.

Regards,
Gary
-----Original Message-----
Hi Gary,

In order to help you, I need to recreate this problem on my own machine.What are the steps for setting up a page that will generate this error?
Thank you, Mike Moore
Microsoft, ASP.NET

This posting is provided "AS IS", with no warranties, and confers no rights.

--------------------
Content-Class: urn:content-classes:message
From: "Gary Varga" <MS**@VargaLtd. com>
Sender: "Gary Varga" <MS**@VargaLtd. com>
Subject: Validation client javascript error
Date: Wed, 27 Aug 2003 06:30:04 -0700
Lines: 12
Message-ID: <0d************ *************** *@phx.gbl>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300 Thread-Index: AcNsn1L2OZnmTDr gR4SJMhBem5YJYA ==
Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
Path: cpmsftngxa06.ph x.gbl
Xref: cpmsftngxa06.ph x.gbl microsoft.publi c.dotnet.framew ork.aspnet:1718 46 NNTP-Posting-Host: TK2MSFTNGXA11 10.40.1.163
X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet

In the file WebUIValidation .js, when a postback that
doesn't fail the validation has a javascript error saying summary is undefined in the ValidationSumma ryOnSubmit
function. Page_Validation Summaries has a length of 1 but there are no array entries.

This is the line that fails:

summary.style.d isplay = "none";

TIA,
Gary Varga


.

Nov 17 '05 #3
Hi Gary,

Here's my understanding of your problem statement.
You have a custom validation control and you have customized your
WebUIValidation .js file. After posting your page, the new page fails with a
client script error related to a modified portion of WebUIValidation .js.
This portion of your code expects an array with one entry, but the array
has no entries.

---
I recommend that you use view source to examine what the browser is
receiving after the postback. Find the part that adds an entry to your
Page_Validation Summaries array. Somewhere within this you should see how it
fails to add an entry to the array. This can then help you find what to
change in your code so that the javascript code is correct.

As part of this, I think you may want to create a new test page which is
simplified. Remove as much complexity as possible while still reproducing
the error.

I realize this isn't an answer, but I hop it helps.

Thank you, Mike Moore
Microsoft, ASP.NET

This posting is provided "AS IS", with no warranties, and confers no rights.
--------------------
Content-Class: urn:content-classes:message
From: "Gary Varga" <MS**@VargaLtd. com>
Sender: "Gary Varga" <MS**@VargaLtd. com>
References: <0d************ *************** *@phx.gbl> <ql************ **@cpmsftngxa06 .phx.gbl> Subject: RE: Validation client javascript error
Date: Thu, 28 Aug 2003 02:06:27 -0700
Lines: 70
Message-ID: <09************ *************** *@phx.gbl>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcNtQ6mL2pSZcg7 5QsavRpyOSTxcvg ==
Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
Path: cpmsftngxa06.ph x.gbl
Xref: cpmsftngxa06.ph x.gbl microsoft.publi c.dotnet.framew ork.aspnet:1722 24
NNTP-Posting-Host: TK2MSFTNGXA13 10.40.1.165
X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet

Thanks for the reply, Mike.

I have a control derived from ValidationSumma ry in a dll.
I used this in a user control and included it in a page.
This page is derived from a class which itself derives
from System.Web.UI.P age.

I can send you the dll and the updated WebUIValidation .js
document - yes I have added to this in one place, I added
a new display type - if you want.

Regards,
Gary
-----Original Message-----
Hi Gary,

In order to help you, I need to recreate this problem on

my own machine.
What are the steps for setting up a page that will

generate this error?

Thank you, Mike Moore
Microsoft, ASP.NET

This posting is provided "AS IS", with no warranties,

and confers no rights.


--------------------
Content-Class: urn:content-classes:message
From: "Gary Varga" <MS**@VargaLtd. com>
Sender: "Gary Varga" <MS**@VargaLtd. com>
Subject: Validation client javascript error
Date: Wed, 27 Aug 2003 06:30:04 -0700
Lines: 12
Message-ID: <0d************ *************** *@phx.gbl>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300 Thread-Index: AcNsn1L2OZnmTDr gR4SJMhBem5YJYA ==
Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
Path: cpmsftngxa06.ph x.gbl
Xref: cpmsftngxa06.ph x.gbl microsoft.publi c.dotnet.framew ork.aspnet:1718 46 NNTP-Posting-Host: TK2MSFTNGXA11 10.40.1.163
X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet

In the file WebUIValidation .js, when a postback that
doesn't fail the validation has a javascript error saying summary is undefined in the ValidationSumma ryOnSubmit
function. Page_Validation Summaries has a length of 1 but there are no array entries.

This is the line that fails:

summary.style.d isplay = "none";

TIA,
Gary Varga


.


Nov 17 '05 #4

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

Similar topics

14
6291
by: Matt | last post by:
I want to know if ASP.NET Web Forms Validation Controls are Server-Side or Client-Side form validation? Since I think each validator control can select either 1) JavaScript based error dialog or 2) show the error message next to the control. For example, if the text field is empty with RequiredField Validator control, it can show the value in ControlToValidate property in two ways as I mentioned. Please advise. Thanks!
5
2153
by: Gary Vidal | last post by:
I have a client side Javascript which checks an OrderQuantityField against a hidden Textbox of the Minimum Order Quantity. I dont want to do validation on a postback. I would like to be able to have FormValidate Javascript function postback to my addToCart Method in my code behind function ValidateForm(myform) { if (myform.OrderQuantity.value == 0) { alert("Form is Invalid = 0 " + myform.OrderQuantity.value); return false } if...
2
3995
by: Martyn Fewtrell | last post by:
Dear All I have a Windows 2003 Server with IIS6 where the validation controls on ASP.Net pages no longer work. I believe it to be specific to the server as if I create an ASP.Net page on the IIS Server of my Workstation (Win XP) with a text box, button and required field validator, this works fine. If I create the same page on the IIS6 Windows 2003 Server the validation control doesn't stop the post. I've tried different browsers and...
6
2279
by: Stephen | last post by:
Hi, Does Validation controls like "Required field validator".... ever work with Netscape or we have to write javascript for either client-side or write server side validation. Please advice. Stephen
5
1918
by: Sun Jian | last post by:
Hi, I am trying to customize the asp.net validation to achieve the following: Upon submitting the form, client side validation will run, and it will stop at the first error detected. For example if both UserID and Password text fields are required but neither is filled in, I'd like to display the error message (a dialogbox) "Please enter the User ID". And only after the user has filled in UserID, it will display "Please enter the...
5
1749
by: Kyle | last post by:
On my Development System, all the page validation controls work fine (WinXP Pro + SP2, VS.NET 2003, .NET v1.1.4322). On the Production System, none of the page validation controls are working (Windows 2000 Server + SP4, .NET v1.1.4322). If one of the client machines access my Development system, everything works as it should, so this isn't a client-side or browser issue (IE 6 + updates).
12
2041
by: Dabbler | last post by:
I need to insure that at least one of three phone number fields has a value (requiredfield) but I'm not sure of a way to implement this without server side logic. Is there a way to use the validation controls to do this? Thanks.
9
4167
by: julie.siebel | last post by:
Hello all! As embarrassing as it is to admit this, I've been designing db driven websites using javascript and vbscript for about 6-7 years now, and I am *horrible* at form validation. To be honest I usually hire someone to do it for me, grab predone scripts and kind of hack out the parts that I need, or just do very minimal validation (e.g. this is numeric, this is alpha-numeric, etc.)
27
4728
by: Chris | last post by:
Hi, I have a form for uploading documents and inserting the data into a mysql db. I would like to validate the form. I have tried a couple of Javascript form validation functions, but it appears that the data goes straight to the processing page, rather than the javascript seeing if data is missing and popping up an alert. I thought it may be because much of the form is populated with data from the db (lists, etc.), but when I leave...
0
8397
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8310
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8827
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8732
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8605
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
5632
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4158
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 last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4315
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1620
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 can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.