Click here to Skip to main content
15,908,776 members

Comments by RAGUNATH V (Top 9 by date)

RAGUNATH V 30-Aug-13 1:39am View    
this method Works fine upto feb 2013.But they have updated the API.while updating they have removed this feature.How to do this in updated API.
RAGUNATH V 16-May-13 4:14am View    
protected void Page_Load(object sender, EventArgs e)
{

Conn = new SqlConnection(ConnString);
string retriveString = "Select User_id,ID from Administration where User_id = '" + Session["id"].ToString()+ "' AND Designation='Rad'";
cmd = new SqlCommand(retriveString, Conn);
Conn.Open();
SqlDataReader red = cmd.ExecuteReader();
if (red.Read())
{
Session["dname"] = red[1].ToString();
}
Conn.Close();
Label1.Text = Session["id"].ToString();
}
RAGUNATH V 16-May-13 4:02am View    
session['load'] is another session variable.am having problem with session["id"]
RAGUNATH V 4-Jan-13 0:17am View    
Thank you.after placing the script below canvas the error cleared.
now its working fine.
RAGUNATH V 3-Jan-13 1:05am View    
Script debugging is disabled by default and also checked it.