|
Rank: Member Groups: Member
Joined: 9/6/2011 Posts: 26
|
I have a user/password reminder page, that includes a MaskedEdit control that by the wat is working as expected (see code below), But when I add a Captcha control to the page, the MaskedEdit control stops working.
The MaskedEdit control accepts 1-800-123-1234 phone format, but when a Captcha control is added to the page the Mask control does not work and it will allow to enter anything into the MaskedEdit for example "abcdefhe_-___-___-____"
<eo:MaskedEdit ID="mskPhone" runat="server" Width="120px" ControlSkinID="None"> <eo:MaskedEditSegment SegmentType="Number" MaxValue="1" MinValue="1" /> <eo:MaskedEditSegment Text="-" /> <eo:MaskedEditSegment SegmentType="Mask" Mask="000" /> <eo:MaskedEditSegment Text="-" /> <eo:MaskedEditSegment SegmentType="Mask" Mask="000" /> <eo:MaskedEditSegment Text="-" /> <eo:MaskedEditSegment SegmentType="Mask" Mask="0000" /> </eo:MaskedEdit>
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,195
|
Hi,
Please try to isolate the problem into a test page and post the test page. Once we have that we will be happy to take a look.
Thanks!
|
|
Rank: Member Groups: Member
Joined: 9/6/2011 Posts: 26
|
http://scorbot.com/Test1.aspxincludes the camptcha causing the masketedit to work wrong http://scorbot.com/Test2.aspxsame page without the camptcha
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,195
|
Hi,
Please try to update to the latest version. It appears to be working fine with the latest version.
Thanks!
|
|
Rank: Member Groups: Member
Joined: 9/6/2011 Posts: 26
|
I have upgraded to 2012 version and the problem is happening on that version too
|
|
Rank: Member Groups: Member
Joined: 9/6/2011 Posts: 26
|
if you run this test you can see the problem: http://scorebots.com.140.webhostforasp.net/
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,195
|
Hi,
Please post the source code of your page. We need to run that page here in our environment to duplicate the problem first. Make sure you remove anything unrelated to the problem.
Thanks!
|
|
Rank: Member Groups: Member
Joined: 9/6/2011 Posts: 26
|
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Scorbot.Test" %>
<%@ Register assembly="EO.Web" namespace="EO.Web" tagprefix="eo" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <div>
<eo:MaskedEdit ID="mskPhone" runat="server" Width="120px" ControlSkinID="None"> <eo:MaskedEditSegment SegmentType="Number" MaxValue="1" MinValue="1" /> <eo:MaskedEditSegment Text="-" /> <eo:MaskedEditSegment SegmentType="Mask" Mask="000" /> <eo:MaskedEditSegment Text="-" /> <eo:MaskedEditSegment SegmentType="Mask" Mask="000" /> <eo:MaskedEditSegment Text="-" /> <eo:MaskedEditSegment SegmentType="Mask" Mask="0000" /> </eo:MaskedEdit>
<br /> <br /> <eo:Captcha ID="Captcha1" runat="server"> </eo:Captcha> <br /> <eo:MsgBox ID="MsgBox1" runat="server"> </eo:MsgBox> </div> </form> </body> </html>
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,195
|
Hi,
We have posted a new build that should fix this problem for you. Please see your private message for the download location.
Thanks!
|
|