Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Last post Feb 04, 2013 10:24 AM by Ravi Prakash Reddy
Member
633 Points
151 Posts
Moderator
Nov 08, 2012 08:58 AM|LINK
[Column(Storage="_UnitPrice", DbType="Money",Expression="UnitPrice + 1.00")] public System.Nullable<decimal> UnitPrice { get { return this._UnitPrice; } set { if ((this._UnitPrice != value)) { this.OnUnitPriceChanging(value); this.SendPropertyChanging(); this._UnitPrice = value; this.SendPropertyChanged("UnitPrice"); this.OnUnitPriceChanged(); } } }testing
Nov 08, 2012 08:59 AM|LINK
[Column(Storage="_UnitPrice", DbType="Money",Expression="UnitPrice + 1.00")] public System.Nullable<decimal> UnitPrice { get { return this._UnitPrice; } set { if ((this._UnitPrice != value)) { this.OnUnitPriceChanging(value); this.SendPropertyChanging(); this._UnitPrice = value; this.SendPropertyChanged("UnitPrice"); this.OnUnitPriceChanged(); } } }
Nov 09, 2012 09:18 AM|LINK
<%@ Register Assembly="MSCaptcha"Namespace="MSCaptcha" TagPrefix="cc1" %>
<cc1:CaptchaControl ID="ccJoin" runat="server" CaptchaBackgroundNoise="none" CaptchaLength="5" CaptchaHeight="60" CaptchaWidth="200" CaptchaLineNoise="None" CaptchaMinTimeout="5" CaptchaMaxTimeout="240" />
Nov 09, 2012 09:19 AM|LINK
ccJoin.ValidateCaptcha(txtCap.Text); if (!ccJoin.UserValidated) { //Inform user that his input was wrong ... return; }
Nov 09, 2012 09:20 AM|LINK
Nov 09, 2012 09:22 AM|LINK
the string of characters to be used for Captcha generation. The default is "ABCDEFGHJKLMNPQRSTUVWXYZ23456789". We recommend to avoid using chars like O, 0, 1 and I because using different fonts they may confuse your users.
test
Nov 12, 2012 10:36 AM|LINK
Example would produce captcha looking like that:
that:
Ravi Prakash...
Member
633 Points
151 Posts
Moderator
testing
Nov 08, 2012 08:58 AM|LINK
[Column(Storage="_UnitPrice", DbType="Money",Expression="UnitPrice + 1.00")]
public System.Nullable<decimal> UnitPrice
{
get
{
return this._UnitPrice;
}
set
{
if ((this._UnitPrice != value))
{
this.OnUnitPriceChanging(value);
this.SendPropertyChanging();
this._UnitPrice = value;
this.SendPropertyChanged("UnitPrice");
this.OnUnitPriceChanged();
}
}
}testing
Ravi Prakash Reddy. G
Ravi Prakash...
Member
633 Points
151 Posts
Moderator
Re: testing
Nov 08, 2012 08:59 AM|LINK
[Column(Storage="_UnitPrice", DbType="Money",Expression="UnitPrice + 1.00")] public System.Nullable<decimal> UnitPrice { get { return this._UnitPrice; } set { if ((this._UnitPrice != value)) { this.OnUnitPriceChanging(value); this.SendPropertyChanging(); this._UnitPrice = value; this.SendPropertyChanged("UnitPrice"); this.OnUnitPriceChanged(); } } }
Ravi Prakash Reddy. G
Ravi Prakash...
Member
633 Points
151 Posts
Moderator
Re: testing
Nov 08, 2012 08:59 AM|LINK
[Column(Storage="_UnitPrice", DbType="Money",Expression="UnitPrice + 1.00")] public System.Nullable<decimal> UnitPrice { get { return this._UnitPrice; } set { if ((this._UnitPrice != value)) { this.OnUnitPriceChanging(value); this.SendPropertyChanging(); this._UnitPrice = value; this.SendPropertyChanged("UnitPrice"); this.OnUnitPriceChanged(); } } }
Ravi Prakash Reddy. G
Ravi Prakash...
Member
633 Points
151 Posts
Moderator
Re: testing
Nov 09, 2012 09:18 AM|LINK
<%@ Register Assembly="MSCaptcha"Namespace="MSCaptcha" TagPrefix="cc1" %>
Ravi Prakash Reddy. G
Ravi Prakash...
Member
633 Points
151 Posts
Moderator
Re: testing
Nov 09, 2012 09:18 AM|LINK
<cc1:CaptchaControl ID="ccJoin" runat="server" CaptchaBackgroundNoise="none" CaptchaLength="5" CaptchaHeight="60" CaptchaWidth="200" CaptchaLineNoise="None" CaptchaMinTimeout="5" CaptchaMaxTimeout="240" />
Ravi Prakash Reddy. G
Ravi Prakash...
Member
633 Points
151 Posts
Moderator
Re: testing
Nov 09, 2012 09:19 AM|LINK
ccJoin.ValidateCaptcha(txtCap.Text); if (!ccJoin.UserValidated) { //Inform user that his input was wrong ... return; }
Ravi Prakash Reddy. G
Ravi Prakash...
Member
633 Points
151 Posts
Moderator
Re: testing
Nov 09, 2012 09:20 AM|LINK
Ravi Prakash Reddy. G
Ravi Prakash...
Member
633 Points
151 Posts
Moderator
Re: testing
Nov 09, 2012 09:22 AM|LINK
the string of characters to be used for Captcha generation. The default is "ABCDEFGHJKLMNPQRSTUVWXYZ23456789". We recommend to avoid using chars like O, 0, 1 and I because using different fonts they may confuse your users.
Ravi Prakash Reddy. G
Ravi Prakash...
Member
633 Points
151 Posts
Moderator
Re: testing
Nov 09, 2012 09:22 AM|LINK
test
Ravi Prakash Reddy. G
Ravi Prakash...
Member
633 Points
151 Posts
Moderator
Re: testing
Nov 12, 2012 10:36 AM|LINK
Example would produce captcha looking like that:
that:
Ravi Prakash Reddy. G