Friday, 25 February 2011

'Remember Me' option in ASp.net

'Remember Me' option in ASp.netusing System;usingSystem.Data;usingSystem.Configuration;usingSystem.Collections;usingSystem.Web;usingSystem.Web.Security;usingSystem.Web.UI;usingSystem.Web.UI.WebControls;usingSystem.Web.UI.WebControls.WebParts;usingSystem.Web.UI.HtmlControls;using System.IO;namespaceWebApplication1{    public partial class WebForm4 : System.Web.UI.Page    {        protectedvoid Page_Load(objectsender, EventArgs e)        {            if(!IsPostBack)            {                if(Request.Cookies["myCookie"]...

Date format in datagrid

Date format in datagrid<table width="100%"border="0"align="center"cellpadding="3"cellspacing="0">                                                    <tr>                                                        <td>                                                           ...

Find Controls inside GridView

Find Controls inside GridView// grid view defination<asp:GridView ID="GridView1"runat="server"AutoGenerateColumns="False"BackColor="PapayaWhip"  BorderColor="Black" BorderStyle="Solid" BorderWidth="1px" CellPadding="3" Font-Names="Tahoma" Height="16px" Width="928px"><Columns><asp:TemplateField><HeaderTemplate>Heading!--HeaderTemplate><ItemTemplate><asp:TextBox ID="text_box1"runat="server">!--asp:TextBox>!--ItemTemplate>!--asp:TemplateField>!--asp:GridView>//code for accessing value of text_box1 inside the GridView1  for(int i = 0;i<GridView1.Rows.Count; i++)  {    TextBox t1;    t1 = (TextBox)GridView1.Rows[n].FindControl("text_box1");    Response.Write(t1.Text); ...

Trace Mobil number location and Mobile number operator in India

function GetPhnlocation() { var phone = document.getElementById('Text1'); var number = document.getElementById('nme'); var state=document.getElementById('cmpny'); var provider=document.getElementById('idno'); var service=document.getElementById('info'); var code = phone.value.slice(0, 4); var re = /^[0-9]+$/; if (phone.value != '' && re.test(phone.value)&& (phone.value.length==10) ) { if (code == "9000") { number.firstChild.nodeValue = 'Mobile No: ' + phone.value; state.firstChild.nodeValue = 'State: Andhra Pradesh'; provider.firstChild.nodeValue = 'Service Provider: Airtel'; service.firstChild.nodeValue = 'Service Type: GSM'; return false; } else if (code == "9001") { number.firstChild.nodeValue = 'Mobile No: ' +...

Pages 131234 »
Twitter Delicious Facebook Digg Stumbleupon Favorites More

 
Powered by Blogger