Click here to Skip to main content
15,898,374 members

Comments by Chandrashekar SK (Top 22 by date)

Chandrashekar SK 23-Nov-12 6:40am View    
You just start with simple console apps then move to windows apps. Practice and practice. You wont learn if you just read.
Chandrashekar SK 23-Nov-12 6:29am View    
Yes creating an application with a browser control and hiding navigation controls will make app webapp :)
Chandrashekar SK 23-Nov-12 6:23am View    
Try with java script. Call this code when its the add is clicked.

function pageScroll() {
window.scrollBy(0,50); // horizontal and vertical scroll increments
scrolldelay = setTimeout('pageScroll()',100); // scrolls every 100 milliseconds
}
Chandrashekar SK 23-Nov-12 6:19am View    
Try if this works..
Session["Value1"] = gridView.Rows[e.RowIndex].Cells[1].Text;

and retrieve the value on the other page like.
String value1 = Session["Value1"].ToString();
Chandrashekar SK 23-Nov-12 5:58am View    
We can not guess what is wrong. Post your code here so that one can understand where you are going wrong..