473,666 Members | 2,382 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

RequiredFieldVa lidator problem with IE 5

Hello,
I have a Web Form with a text box and a required field validator
attached to it. This form is installed on two different
configurations explained below.

Config. 1:
- Windows Server 2000 (SP4)
- .NET Framework 1.1
- IE 6.0
- The control works fine.

Config. 2:
- Windows Server 2000 (SP4)
- .NET Framework 1.1
- IE 5.0
- The control does not works.

Both configuration are accessed via IE 6.0 installed on Windows 2000
Professionnal.

The problem is that the validator works on a specific server and does
not work on another server.

Is it possible that IE 5.0 generates the problem?

Thank you very much for the answer.
Nov 18 '05 #1
3 1145
if the user has scripts disabled then yes. Clientside validators require
that javascript is enabled on the client. Use custom/server validators to
avoid this. It's a postback, but it's consistent

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Pierre" <pc*****@kim.ka ba.com> wrote in message
news:39******** *************** ***@posting.goo gle.com...
Hello,
I have a Web Form with a text box and a required field validator
attached to it. This form is installed on two different
configurations explained below.

Config. 1:
- Windows Server 2000 (SP4)
- .NET Framework 1.1
- IE 6.0
- The control works fine.

Config. 2:
- Windows Server 2000 (SP4)
- .NET Framework 1.1
- IE 5.0
- The control does not works.

Both configuration are accessed via IE 6.0 installed on Windows 2000
Professionnal.

The problem is that the validator works on a specific server and does
not work on another server.

Is it possible that IE 5.0 generates the problem?

Thank you very much for the answer.

Nov 18 '05 #2
Another potential issue, is that there were definitely some serious
javascript bugs in 5.0, which may result in events not firing properly or
something. Make sure that the page is not generating any errors in 5.0 as
well, might be a syntax thing.

"Pierre" <pc*****@kim.ka ba.com> wrote in message
news:39******** *************** ***@posting.goo gle.com...
Hello,
I have a Web Form with a text box and a required field validator
attached to it. This form is installed on two different
configurations explained below.

Config. 1:
- Windows Server 2000 (SP4)
- .NET Framework 1.1
- IE 6.0
- The control works fine.

Config. 2:
- Windows Server 2000 (SP4)
- .NET Framework 1.1
- IE 5.0
- The control does not works.

Both configuration are accessed via IE 6.0 installed on Windows 2000
Professionnal.

The problem is that the validator works on a specific server and does
not work on another server.

Is it possible that IE 5.0 generates the problem?

Thank you very much for the answer.

Nov 18 '05 #3
Hello.
First, thank you all for your fast answer.
I found the problem: the aspnet_client folder was not a sub-folder of
the WWW virtual domain. Therefore the javascript file
"WebUIValidatio n.js" was not reachable by the validator control and
nothing worked.
I added this folder to the virtual domain and everything works fine.
Once again, thanks!
Pierre

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 18 '05 #4

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

Similar topics

6
2148
by: BK | last post by:
I'm having a really strange problem with and HtmlSelect server control (listbox) and a RequiredFieldValidator that I am trying to use to make sure that someone has items in the listbox. The way that the HtmlSelect is populated is via a combination of client-side javascript and another aspx page (launched by the javascript). Anyway, everything seems to work just fine in terms of populating the HtmlSelect. However, when I postback the...
0
2025
by: Nicolas | last post by:
How can I have only one RequiredFieldValidator to control two TextBox webcontrols so that only one message is displayed <asp:Label id="lbl_UserName" runat="server"></asp:Label><br> <asp:TextBox id="txt_UserName" runat="server"></asp:TextBox> <asp:RequiredFieldValidator id="R_lbl_UserName" runat="server" ControlToValidate="txt_UserName" ErrorMessage="RequiredFieldValidator"></asp:RequiredFieldValidator> <br> <asp:Label id="lbl_Password"...
3
2942
by: me | last post by:
Is there any particular reason why a requiredfieldvalidator cant validate a listbox? I have bound the two together but the validator always returns false on isvalid and so does the Page, no matter if the user selects an item in the listbox or not.
7
8957
by: Ed West | last post by:
Hello, I have a simple form with some input boxes. After validation if one fails, then I would like to at the top of the page say something like "The following fields in red are required" and then change the label in front of the textbox or dropdown list to red... is this possible with asp.net? It seems you can only put a RequiredFieldValidator on the page, and if it fails validation then that text is displayed... ? Thanks
4
10034
by: James | last post by:
Hello, I have a RequiredFieldValidator for several textbox controls on a form. Here's an example with the RequiredFieldValidator. EnableClientScript, Enabled, and Visible are set to true for the RequiredFieldValidator. <asp:textbox id="FirstName" MaxLength="25" runat="server"></asp:textbox>
4
5098
by: Joe | last post by:
Hello, I have created a login page using dotnet. I am using requiredFieldValidator and noticed that the code works fine in IE but not in Netscape, Opera, Mozilla, Firefox, etc. For example if I do not enter anything in the form in IE, then form won't be submitted but in other browsers it is submitted. I checked that JavaScript is enabled in Netscape, Opera, Mozilla, Firefox,
5
3234
by: Fernando Lopes | last post by:
Hi. I want to show an image in a requiredfield validator instead of "*". So, I 'm set the requiredfieldvalidator attributes like following: <asp:RequiredFieldValidator id=rfvFirstName ControlToValidate="AddressName" Display="Dynamic" ErrorMessage="First Name Is Required" Runat="server" CssClass="AlertText"
2
2092
by: Hongbo | last post by:
Hi, I have a Asp.Net written in C#. It serve as information input form. The form encounters sort of random problem with the email field and state field. I have validator attached with these 2 fields as the following: ===== <form id="creditcardform" method="post" runat="server"> Email: <asp:textbox id="txtBillEmail" maxlength="50" width="200" runat="server" /> <asp:requiredfieldvalidator id="vp10" runat="server" initialvalue="" ...
1
5994
by: Giovanni | last post by:
Dear Friends, I need your help. I am trying to dynamically create a RequiredFieldValidator in the ItemCreated event of a DataList but cannot get it to work. The errors seem to revolve around the .ControlToValidate property. When a new Item is created, I check the information coming in from my database. Based on a field value (TypeID), I create a different control needed for input: (TextBox, ListBox, DropdownList, etc...), add this...
2
6460
by: Christina | last post by:
Hello !! I am creating a dynamic textbox and want to validate it using the requiredfieldvalidator. These are the steps which I tried: ==================================================== 1) In Page_load, Dim Email As New Label
0
8440
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
8352
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
8780
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
8549
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
8636
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
7378
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
4192
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...
1
2765
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
1763
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.