Welcome Guest Search | Active Topics | Sign In | Register

Captcha control affecting the behavior of MaskedEdit control Options
MannyRosa
Posted: Sunday, January 6, 2013 5:25:52 PM
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>
eo_support
Posted: Monday, January 7, 2013 3:54:05 PM
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!
MannyRosa
Posted: Monday, January 7, 2013 7:54:19 PM
Rank: Member
Groups: Member

Joined: 9/6/2011
Posts: 26
http://scorbot.com/Test1.aspx
includes the camptcha causing the masketedit to work wrong
http://scorbot.com/Test2.aspx
same page without the camptcha
eo_support
Posted: Tuesday, January 8, 2013 7:35:46 PM
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!
MannyRosa
Posted: Saturday, February 2, 2013 12:05:05 AM
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
MannyRosa
Posted: Thursday, February 7, 2013 12:10:20 PM
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/
eo_support
Posted: Thursday, February 7, 2013 1:31:25 PM
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!
MannyRosa
Posted: Thursday, February 7, 2013 2:17:25 PM
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>
eo_support
Posted: Thursday, February 7, 2013 4:17:14 PM
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!


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.