Click here to Skip to main content
15,886,799 members

Comments by vickycode4 (Top 23 by date)

vickycode4 30-Mar-15 3:56am View    
Example:
http://www.pathology-software.com/images/pathology-software/patholgy-screenshot7.jpg

Exactly i required like this with my Items Group fields.
vickycode4 22-Mar-15 4:07am View    
Thank you sir, I have done it. but my requirement got changed. I just need to the same in button click which is placed outside the Grid view. is it possible to do. i searched various sites dint find any sol till now.. help me sir
vickycode4 20-Mar-15 6:05am View    
Sir i tried it, Giving the error as Unable to cast object of type 'System.Web.UI.WebControls.Button' to type 'System.Web.UI.WebControls.ImageButton'.
vickycode4 20-Mar-15 5:18am View    
protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
{
if (e.CommandName == "Send")
{
TextBox txt = (TextBox)GridView1.FindControls("txtItemGroup");
Session["ItemGroup"] = txt.Text;
}
}

In Other Page:

if (!IsPostBack)
{
string sd = Session["ItemGroup"].ToString();
}

Sir, I tried This one. But It is showing FindControl error,
vickycode4 20-Mar-15 3:26am View    
Thank you sir, Without using Session is there any other solution.