Click here to Skip to main content
16,004,372 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionDesign-time render error for CompositeControl Pin
Fayu16-Jun-10 5:38
Fayu16-Jun-10 5:38 
Questionow to find Textbox ID's binded inside Grid view Pin
Satish_S16-Jun-10 1:22
Satish_S16-Jun-10 1:22 
AnswerRe: ow to find Textbox ID's binded inside Grid view Pin
meeram39516-Jun-10 1:26
meeram39516-Jun-10 1:26 
GeneralRe: ow to find Textbox ID's binded inside Grid view Pin
Satish_S16-Jun-10 1:35
Satish_S16-Jun-10 1:35 
AnswerRe: ow to find Textbox ID's binded inside Grid view Pin
shreekar17-Jun-10 3:51
shreekar17-Jun-10 3:51 
Questiondisplay column headers vertically Pin
priyagee16-Jun-10 0:43
priyagee16-Jun-10 0:43 
QuestionHow to use _dopostabck() in ajax tab container Pin
sudheera p16-Jun-10 0:36
sudheera p16-Jun-10 0:36 
QuestionPayPal problem Pin
Yoyosch16-Jun-10 0:02
Yoyosch16-Jun-10 0:02 
AnswerRe: PayPal problem Pin
Adam R Harris16-Jun-10 4:58
Adam R Harris16-Jun-10 4:58 
QuestionRe: PayPal problem [modified] Pin
chayanban29-Dec-10 1:42
chayanban29-Dec-10 1:42 
QuestionContentPlaceHolder [modified] Pin
eslam soliman15-Jun-10 23:50
eslam soliman15-Jun-10 23:50 
AnswerRe: ContentPlaceHolder Pin
Sandeep Mewara16-Jun-10 0:21
mveSandeep Mewara16-Jun-10 0:21 
GeneralRe: ContentPlaceHolder Pin
eslam soliman16-Jun-10 1:06
eslam soliman16-Jun-10 1:06 
AnswerRe: ContentPlaceHolder Pin
KingHau16-Jun-10 21:15
KingHau16-Jun-10 21:15 
GeneralRe: ContentPlaceHolder Pin
eslam soliman16-Jun-10 22:57
eslam soliman16-Jun-10 22:57 
GeneralRe: ContentPlaceHolder Pin
KingHau17-Jun-10 0:38
KingHau17-Jun-10 0:38 
GeneralRe: ContentPlaceHolder Pin
eslam soliman22-Jun-10 1:41
eslam soliman22-Jun-10 1:41 
QuestionProcess large file in asp.net Pin
Rohit16db15-Jun-10 22:08
Rohit16db15-Jun-10 22:08 
AnswerRe: Process large file in asp.net Pin
Rhys Jacob15-Jun-10 22:13
Rhys Jacob15-Jun-10 22:13 
GeneralRe: Process large file in asp.net Pin
Rohit16db15-Jun-10 22:37
Rohit16db15-Jun-10 22:37 
AnswerRe: Process large file in asp.net Pin
meeram39516-Jun-10 1:23
meeram39516-Jun-10 1:23 
GeneralRe: Process large file in asp.net Pin
Rohit16db16-Jun-10 3:29
Rohit16db16-Jun-10 3:29 
AnswerRe: Process large file in asp.net Pin
shreekar17-Jun-10 4:03
shreekar17-Jun-10 4:03 
QuestionDataGrid Checkbox Column Unchecked!! Pin
NinaWilliam15-Jun-10 21:35
NinaWilliam15-Jun-10 21:35 
AnswerRe: DataGrid Checkbox Column Unchecked!! Pin
meeram39515-Jun-10 21:49
meeram39515-Jun-10 21:49 
Try to do this:

CheckBox ckbox = DataGrid1.FindControl("yourcheckboxcontrolId");
chkbox.checked = true;


Check this outside of IsPostBack during PageLoad event so that it will always be checked. Hope this helps.
Success is the good fortune that comes from aspiration, desperation, perspiration and inspiration.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.