473,659 Members | 3,277 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

RegularExpressi onValidator

I have added a REV to an input type of file. I want to make sure that the
only file type that is allowed is a .gif, .jpg, or .jpeg. I develop my site
on my laptop which is running Win XP Pro and my site is hosted on a Win 2000
Advanced server. Here is my problem. When I test it on my local host of
the XP Pro machine the validator works. When I migrate it to the W2K box it
doesn't work. There is no error that is displayed. Is anyone aware of
this. Not sure if it makes a difference or not but the code is in a control
that is displayed.

Here is the code
<%@ import Namespace="ASPN ET.StarterKit.C ommunities" %>
<%@ Register TagPrefix="comm unity" Namespace="ASPN ET.StarterKit.C ommunities"
Assembly="ASPNE T.StarterKit.Co mmunities" %>
<%@ Control %>
<%--

This skin is used both for adding and editing a photo. Modify the HTML
content
to modify the appearance of the page.
--%>
<community:Sect ionTitle CssClass="Form_ Title" Runat="server"
id="SectionTitl e1" />
<p class="Form_Des cription">Use this form to upload images to the portal.
You can
rename files before uploading them.</p>
<p>
<community:Disp layQuota runat="server" id="DisplayQuot a1" />
</p>
<TABLE id="Table2" cellSpacing="0" cellPadding="3" class="Form_Tab le"
border="0">
<TR>
<TD class="Form_Sec tionRow">
Add Photo Form
<DIV></DIV>
</TD>
</TR>
<TR class="Form_Lab elRow">
<TD class="Form_Lab elText">
<div>
<span class="Form_Lab elText">Image File </span>
<community:Uplo adValidator id="valUpload"
ControlToValida te="txtPhotoFil e" Text="(required )" Runat="Server" />
<br>
<span class="Form_Hel pText">(For example, C:\Images\Book. jpg)</span>
</div>
<input id="txtPhotoFil e" type="file" Size="40" Runat="Server"> <br>
<asp:RegularExp ressionValidato r ControlToValida te="txtPhotoFil e"
ID="revTxtPhoto File" Runat="server" ErrorMessage="I mage must be a gif or
jpg/jpeg format."

ValidationExpre ssion="(.*\.([gG][iI][fF]|[jJ][pP][gG]|[jJ][pP][eE][gG])$)"><
/asp:RegularExpr essionValidator >
<br>
<community:Disp layPhotoImage id="imgPhoto" Width="100" Runat="Server" />
</TD>
</TR>
<tr>
<td class="Form_Lab elText">
<asp:Panel id="pnlTopics" runat="Server">
<SPAN class="Form_Lab elText">Topic</SPAN>
<asp:RequiredFi eldValidator id="RequiredFie ldValidator1" Runat="server"
CssClass="Form_ Field" Text="(required )"
ControlToValida te="dropTopics "
InitialValue="-1"></asp:RequiredFie ldValidator>
<BR>
<community:Topi cPicker id="dropTopics "
runat="Server"> </community:Topic Picker>
</asp:Panel>
</td>
</tr>
<TR>
<TD class="Form_Lab elText">
<div>
<span class="Form_Lab elText">Name </span>
<br>
<span class="Form_Hel pText">(For example, 'Summer Trip')</span>
<asp:RequiredFi eldValidator ControlToValida te="txtPhotoTit le"
Text="(required )" CssClass="Form_ Field" Runat="server"
id="RequiredFie ldValidator2" />
</div>
<asp:TextBox id="txtPhotoTit le" CssClass="Form_ Field" Columns="40"
runat="server"> </asp:TextBox>
<P></P>
</TD>
</TR>
<TR>
<TD class="Form_Lab elText" colSpan="2">
<div>
<span class="Form_Lab elText">Caption </span>
<br>
<span class="Form_Hel pText">(This information is listed on the Pictures
page.)</span>
<asp:RequiredFi eldValidator ControlToValida te="txtPhotoBri efDescription"
Text="(required )" Display="Dynami c"
CssClass="Form_ Field" Runat="server" id="RequiredFie ldValidator3" />
<community:Leng thValidator Maxlength="500"
ControlToValida te="txtPhotoBri efDescription" Text="(less than 500
characters)"
CssClass="Form_ Field" Runat="server" id="LengthValid ator1" />
</div>
<asp:TextBox id="txtPhotoBri efDescription" CssClass="Form_ Field"
runat="server" TextMode="Multi Line"
Rows="5" Width="508px"></asp:TextBox>
<P></P>
</TD>
</TR>
<TR>
<TD class="Form_Lab elText" colSpan="2">
<div>
<span class="Form_Lab elText">Full Description</span>
<br>
<span class="Form_Hel pText">(Optiona l. Users can access this information
when they press the 'Read More' link.)</span>
</div>
<community:Html TextBox id="txtPhotoFul lDescription" runat="server"
Rows="5" Width="508px" />
</TD>
</TR>
<TR>
<TD align="right" colSpan="2" class="Form_Sec tionRow">
<asp:Button id="btnAdd" CssClass="Form_ Button" Runat="server" Text="Add
New Image"></asp:Button>
<asp:Button id="btnEdit" CssClass="Form_ Button" Runat="server"
Text="Apply Changes"></asp:Button>
</TD>
</TR>
</TABLE>
<p>
</p>
Nov 18 '05 #1
1 3679
Do you have a ValidationSumma ry that you are using? Also, in your code
behind, if you want to validate on the server, you should explicitly do a
Page.Validate() , followed by an if (Page.IsValid) {...}.

For client side validation, you also need to make sure you have run
aspnet_regiis on the specific site you are installing to, and you need to do
this again for each new web site that you create on the server. This
installs the script libraries that are used by validation.

--
Chris Jackson
Software Engineer
Microsoft MVP - Windows Client
Windows XP Associate Expert
--
More people read the newsgroups than read my email.
Reply to the newsgroup for a faster response.
(Control-G using Outlook Express)
--

"Ken Grimmett" <kg******@colum bus.rr.com> wrote in message
news:2U******** *****@fe2.colum bus.rr.com...
I have added a REV to an input type of file. I want to make sure that the
only file type that is allowed is a .gif, .jpg, or .jpeg. I develop my site on my laptop which is running Win XP Pro and my site is hosted on a Win 2000 Advanced server. Here is my problem. When I test it on my local host of
the XP Pro machine the validator works. When I migrate it to the W2K box it doesn't work. There is no error that is displayed. Is anyone aware of
this. Not sure if it makes a difference or not but the code is in a control that is displayed.

Here is the code
<%@ import Namespace="ASPN ET.StarterKit.C ommunities" %>
<%@ Register TagPrefix="comm unity" Namespace="ASPN ET.StarterKit.C ommunities" Assembly="ASPNE T.StarterKit.Co mmunities" %>
<%@ Control %>
<%--

This skin is used both for adding and editing a photo. Modify the HTML
content
to modify the appearance of the page.
--%>
<community:Sect ionTitle CssClass="Form_ Title" Runat="server"
id="SectionTitl e1" />
<p class="Form_Des cription">Use this form to upload images to the portal.
You can
rename files before uploading them.</p>
<p>
<community:Disp layQuota runat="server" id="DisplayQuot a1" />
</p>
<TABLE id="Table2" cellSpacing="0" cellPadding="3" class="Form_Tab le"
border="0">
<TR>
<TD class="Form_Sec tionRow">
Add Photo Form
<DIV></DIV>
</TD>
</TR>
<TR class="Form_Lab elRow">
<TD class="Form_Lab elText">
<div>
<span class="Form_Lab elText">Image File </span>
<community:Uplo adValidator id="valUpload"
ControlToValida te="txtPhotoFil e" Text="(required )" Runat="Server" />
<br>
<span class="Form_Hel pText">(For example, C:\Images\Book. jpg)</span>
</div>
<input id="txtPhotoFil e" type="file" Size="40" Runat="Server"> <br>
<asp:RegularExp ressionValidato r ControlToValida te="txtPhotoFil e"
ID="revTxtPhoto File" Runat="server" ErrorMessage="I mage must be a gif or
jpg/jpeg format."

ValidationExpre ssion="(.*\.([gG][iI][fF]|[jJ][pP][gG]|[jJ][pP][eE][gG])$)">< /asp:RegularExpr essionValidator >
<br>
<community:Disp layPhotoImage id="imgPhoto" Width="100" Runat="Server" /> </TD>
</TR>
<tr>
<td class="Form_Lab elText">
<asp:Panel id="pnlTopics" runat="Server">
<SPAN class="Form_Lab elText">Topic</SPAN>
<asp:RequiredFi eldValidator id="RequiredFie ldValidator1" Runat="server" CssClass="Form_ Field" Text="(required )"
ControlToValida te="dropTopics "
InitialValue="-1"></asp:RequiredFie ldValidator>
<BR>
<community:Topi cPicker id="dropTopics "
runat="Server"> </community:Topic Picker>
</asp:Panel>
</td>
</tr>
<TR>
<TD class="Form_Lab elText">
<div>
<span class="Form_Lab elText">Name </span>
<br>
<span class="Form_Hel pText">(For example, 'Summer Trip')</span>
<asp:RequiredFi eldValidator ControlToValida te="txtPhotoTit le"
Text="(required )" CssClass="Form_ Field" Runat="server"
id="RequiredFie ldValidator2" />
</div>
<asp:TextBox id="txtPhotoTit le" CssClass="Form_ Field" Columns="40"
runat="server"> </asp:TextBox>
<P></P>
</TD>
</TR>
<TR>
<TD class="Form_Lab elText" colSpan="2">
<div>
<span class="Form_Lab elText">Caption </span>
<br>
<span class="Form_Hel pText">(This information is listed on the Pictures page.)</span>
<asp:RequiredFi eldValidator ControlToValida te="txtPhotoBri efDescription" Text="(required )" Display="Dynami c"
CssClass="Form_ Field" Runat="server" id="RequiredFie ldValidator3" />
<community:Leng thValidator Maxlength="500"
ControlToValida te="txtPhotoBri efDescription" Text="(less than 500
characters)"
CssClass="Form_ Field" Runat="server" id="LengthValid ator1" />
</div>
<asp:TextBox id="txtPhotoBri efDescription" CssClass="Form_ Field"
runat="server" TextMode="Multi Line"
Rows="5" Width="508px"></asp:TextBox>
<P></P>
</TD>
</TR>
<TR>
<TD class="Form_Lab elText" colSpan="2">
<div>
<span class="Form_Lab elText">Full Description</span>
<br>
<span class="Form_Hel pText">(Optiona l. Users can access this information when they press the 'Read More' link.)</span>
</div>
<community:Html TextBox id="txtPhotoFul lDescription" runat="server"
Rows="5" Width="508px" />
</TD>
</TR>
<TR>
<TD align="right" colSpan="2" class="Form_Sec tionRow">
<asp:Button id="btnAdd" CssClass="Form_ Button" Runat="server" Text="Add
New Image"></asp:Button>
<asp:Button id="btnEdit" CssClass="Form_ Button" Runat="server"
Text="Apply Changes"></asp:Button>
</TD>
</TR>
</TABLE>
<p>
</p>

Nov 18 '05 #2

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

Similar topics

0
3012
by: Andy Eshtry | last post by:
I have a radio button list, a textbox representing SIN or EIN based on my radio button list selection so I put 2 regularexpressionvalidator to evaluate the value of textbox. EIN must be (for simplicity) with this format (2 digits) like 12 (ValidationExpression="\d{3}-\d{2}") and SIN must be (for simplicity) with this format (3digits-2digits) like 123-45 (ValidationExpression="\d{3}-\d{2}") It works well. The problem is: When I...
3
3791
by: Ricardo Corsi P. Cesar | last post by:
Hi, i looking for example in asp.net (VB) to make the RegularExpressionValidator in runtime in my code behind. I found some similars codes, but nothing in VB.. thanks!
3
2021
by: DC | last post by:
I have this snippet: <tr> <td align="left">E-mail</td> <td> <asp:TextBox id="txtEmail" runat="server" MaxLength="100"></asp:TextBox>&nbsp; <asp:RegularExpressionValidator id="revEmail" runat="server" ErrorMessage="Enter a valid e-mail address" ControlToValidate="txtEmail"
0
1347
by: Matt Morris | last post by:
Hello: I have a RegularExpressionValidator control attached to a TextBox. I have the ValidationExpression property set to a very simple validation expression (\w+). The validation always fails when entering Greek characters. When I test this expression in a standalone test harness, it accepts the Greek characters just fine. It is my understanding that the RegEx class in the Framework is by default culture sensitive and I assume the...
3
3676
by: tshad | last post by:
I have a RegularExpressionValidator that doesn't seem to work correctly if you don't enter anything. In the following, it works correctly if you have at least 1 character. If you just enter through the field it lets you (even thoug no entry would be less that 6 characters. <asp:textbox id="password1" TextMode="Password" Columns="45" runat="server" /><asp:label text=" 6-20 characters with at least 1 numeric" style="color:red"...
0
1153
by: venkat Murthy | last post by:
Hi, I have 10 regularexpression validators in my datagrid. my datagrid looks like; first5controls | boundcolumn | next5controls. Regularexpressionvalidator for first five controls works fine. But, it throws wierd errors when the error message is caught for next5controls.
1
1834
by: franz | last post by:
does anybody tell me why it doesn't works?? in any case gg beame true thanks franz Dim y As RegularExpressionValidator = New RegularExpressionValidator y.ValidationExpression = "^\w+(\w+)*@\w+(\w+)*\.\w+(\w+)*$" y.ControlToValidate = "ss5ssss" Dim gg As Boolean = y.IsValid
1
1485
by: John Yopp | last post by:
I'm trying to use a asp:RegularExpressionValidator to validate the strength of a password. When I test the regular expression with Regex.IsMatch, it works perfectly. However, when used within a RegularExpressionValidator, it always returns false. Has anyone else had issues with the RegularExpressionValidator not correctly parsing a regular expression? The regular expression I am using is: "^.*(?=.*\d)|(?=.*)|(?=.*)(?=.*)(?=.{8,}).*$"
4
581
by: simonZ | last post by:
I have RegularExpressionValidator which validate one text box. When my text box is validated on client I would like to do something else. Is there some client event of RegularExpressionValidator? Something like after validate? something like: <script language="javaScript">
4
6047
by: =?Utf-8?B?Y3VyaW91cw==?= | last post by:
I am using a RegularExpressionValidator to validate a TextBox. I use "^?+(\.*)?$" to check for a real number. The control works fine as long as the user enters something in the TextBox; it does not work if the user leaves the TextBox blank. Is there a bug in the implementation of the RegularExpressionValidator? The above regluar expression should also catch no entry by the user. I have added a RequiredFieldValidator to solve the...
0
8337
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
8851
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...
1
8531
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
7359
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
5650
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
4335
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2754
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
1978
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1739
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.