Click here to Skip to main content
16,015,097 members

Comments by Somasundharam Arjunan (Top 2 by date)

Somasundharam Arjunan 26-Jun-14 1:35am View    
am trying lot but again getting "Unauthorized (401) Error" in WebResponse tResponse = tRequest.GetResponse(); and am checked the api key and sender id both are same.
Somasundharam Arjunan 18-Oct-13 3:34am View    
Yes am done the same....
here my code
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
ViewState["Sort"] = Sort;
bind_gridView();
}
}

public void bind_gridView()
{


DataSet ds = oBAL.bind_Gridview("select");
ViewState["EmployeeDetails"] = ds;
//DataView dv = ds.Tables[0].DefaultView;
//dv.Sort = ViewState["Sort"].ToString();
ds.Tables[0].DefaultView.Sort = ViewState["Sort"].ToString();
GridView1.DataSource = ds;

GridView1.DataBind();
}