102, 2013

Create Captcha using DLL

By |Tags: |0 Comments

Here we discuss about how to create Captcha using DLL .aspx File <%@ Register Assembly=โ€MSCaptchaโ€ Namespace=โ€MSCaptchaโ€ TagPrefix=โ€cc1โ€ณ %> <form id=โ€form1โ€ณ runat=โ€serverโ€> <div> <cc1:CaptchaControl ID=โ€Captcha1โ€ณ runat=โ€serverโ€ CaptchaBackgroundNoise=โ€Lowโ€ CaptchaLength=โ€5โ€ณ CaptchaHeight=โ€60โ€ณ CaptchaWidth=โ€200โ€ณ CaptchaLineNoise=โ€Noneโ€ CaptchaMinTimeout=โ€5โ€ณ CaptchaMaxTimeout=โ€240โ€ณ FontColor = โ€œ#529E00โ€ณ

3101, 2013

Custom Paging with Numbers

By |Tags: |0 Comments

Custom Paging with Numbers =========================== .aspx ====== <div> PageSize: <asp:DropDownList ID="ddlPageSize" runat="server" AutoPostBack="true" OnSelectedIndexChanged="PageSize_Changed"> <asp:ListItem Text="10" Value="10" /> <asp:ListItem Text="25" Value="25" /> <asp:ListItem Text="50" Value="50" /> <asp:ListItem Text="75" Value="75" /> </asp:DropDownList> <hr /> <asp:GridView ID="gvCustomerDetails"

Go to Top