473,739 Members | 4,265 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Javascript error

Hello All,

ASP.NET 1.1 and Visual Studio 2003.

I have a page which has few datagrids, validation controls and other server
controls. When the page is rendered in the browser I am seeing a javascript
error at the very bottom of the page. I am not using any custom javascript
code except for what is inherently generated by .NET framework.

When I tried debugging the javascript error using debugging tools for
windows, the debugger stopped at the "ValidatorOnLoa d()" method in
WebUIValidation .js file.

function ValidatorOnLoad () {
if (typeof(Page_Va lidators) == "undefined" )
return;
var i, val;
for (i = 0; i < Page_Validators .length; i++) {
val = Page_Validators[i];
if (typeof(val.eva luationfunction ) == "string") { <-- DEBUGGER
stopped here
eval("val.evalu ationfunction = " + val.evaluationf unction + ";");
}
if (typeof(val.isv alid) == "string") {
if (val.isvalid == "False") {
val.isvalid = false;
Page_IsValid = false;
}
else {
val.isvalid = true;
}
} else {
val.isvalid = true;
}
if (typeof(val.ena bled) == "string") {
val.enabled = (val.enabled != "False");
}
ValidatorHookup ControlID(val.c ontroltovalidat e, val);
ValidatorHookup ControlID(val.c ontrolhookup, val);
}
Page_Validation Active = true;
}

Can anyone let me know what is the problem? Is it because of the validation
controls that I have on the page???

It is so frustrating to debug these generic javascript errors when you are
not using any custom code at all.

Thanks for any pointers!
Oct 4 '06 #1
2 2759
Try Registering ASP.NET on IIS again using
aspnet_regiis -i

Hopefully that should work.
--
Ameet Phadnis
Sr. Technical Consultant
e Tek Global Inc.
ASP Alliance Author Page: http://aspalliance.com/author.aspx?uId=44260
"Diffident" wrote:
Hello All,

ASP.NET 1.1 and Visual Studio 2003.

I have a page which has few datagrids, validation controls and other server
controls. When the page is rendered in the browser I am seeing a javascript
error at the very bottom of the page. I am not using any custom javascript
code except for what is inherently generated by .NET framework.

When I tried debugging the javascript error using debugging tools for
windows, the debugger stopped at the "ValidatorOnLoa d()" method in
WebUIValidation .js file.

function ValidatorOnLoad () {
if (typeof(Page_Va lidators) == "undefined" )
return;
var i, val;
for (i = 0; i < Page_Validators .length; i++) {
val = Page_Validators[i];
if (typeof(val.eva luationfunction ) == "string") { <-- DEBUGGER
stopped here
eval("val.evalu ationfunction = " + val.evaluationf unction + ";");
}
if (typeof(val.isv alid) == "string") {
if (val.isvalid == "False") {
val.isvalid = false;
Page_IsValid = false;
}
else {
val.isvalid = true;
}
} else {
val.isvalid = true;
}
if (typeof(val.ena bled) == "string") {
val.enabled = (val.enabled != "False");
}
ValidatorHookup ControlID(val.c ontroltovalidat e, val);
ValidatorHookup ControlID(val.c ontrolhookup, val);
}
Page_Validation Active = true;
}

Can anyone let me know what is the problem? Is it because of the validation
controls that I have on the page???

It is so frustrating to debug these generic javascript errors when you are
not using any custom code at all.

Thanks for any pointers!
Oct 4 '06 #2
The following link did the trick for me:

http://www.velocityreviews.com/forum...alidation.html

I had a validation control which was commented using the <!-- --tags.

Thanks for your pointer!

"Ameet Phadnis(e Tek Global Inc.)" wrote:
Try Registering ASP.NET on IIS again using
aspnet_regiis -i

Hopefully that should work.
--
Ameet Phadnis
Sr. Technical Consultant
e Tek Global Inc.
ASP Alliance Author Page: http://aspalliance.com/author.aspx?uId=44260
"Diffident" wrote:
Hello All,

ASP.NET 1.1 and Visual Studio 2003.

I have a page which has few datagrids, validation controls and other server
controls. When the page is rendered in the browser I am seeing a javascript
error at the very bottom of the page. I am not using any custom javascript
code except for what is inherently generated by .NET framework.

When I tried debugging the javascript error using debugging tools for
windows, the debugger stopped at the "ValidatorOnLoa d()" method in
WebUIValidation .js file.

function ValidatorOnLoad () {
if (typeof(Page_Va lidators) == "undefined" )
return;
var i, val;
for (i = 0; i < Page_Validators .length; i++) {
val = Page_Validators[i];
if (typeof(val.eva luationfunction ) == "string") { <-- DEBUGGER
stopped here
eval("val.evalu ationfunction = " + val.evaluationf unction + ";");
}
if (typeof(val.isv alid) == "string") {
if (val.isvalid == "False") {
val.isvalid = false;
Page_IsValid = false;
}
else {
val.isvalid = true;
}
} else {
val.isvalid = true;
}
if (typeof(val.ena bled) == "string") {
val.enabled = (val.enabled != "False");
}
ValidatorHookup ControlID(val.c ontroltovalidat e, val);
ValidatorHookup ControlID(val.c ontrolhookup, val);
}
Page_Validation Active = true;
}

Can anyone let me know what is the problem? Is it because of the validation
controls that I have on the page???

It is so frustrating to debug these generic javascript errors when you are
not using any custom code at all.

Thanks for any pointers!
Oct 4 '06 #3

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

Similar topics

8
3674
by: chrisdude911 | last post by:
how do i add video into a javascript web page with my own custom buttons?
0
8969
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
9479
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
9337
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...
1
9266
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9209
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
4826
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3280
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2748
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2193
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.