Click here to Skip to main content
15,893,668 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: openenig document in different window Pin
Chetan Ranpariya8-Jun-07 0:58
Chetan Ranpariya8-Jun-07 0:58 
AnswerRe: openenig document in different window Pin
badgrs8-Jun-07 0:22
badgrs8-Jun-07 0:22 
AnswerRe: openenig document in different window [modified] Pin
Tom John8-Jun-07 0:24
Tom John8-Jun-07 0:24 
GeneralRe: openenig document in different window Pin
Sandeep Akhare8-Jun-07 0:39
Sandeep Akhare8-Jun-07 0:39 
GeneralRe: openenig document in different window Pin
Venkatesh Mookkan8-Jun-07 1:43
Venkatesh Mookkan8-Jun-07 1:43 
GeneralRe: openenig document in different window Pin
Sandeep Akhare8-Jun-07 4:23
Sandeep Akhare8-Jun-07 4:23 
Questionhow can i bind a datalist dynamically?? Pin
regin7-Jun-07 23:30
regin7-Jun-07 23:30 
AnswerRe: how can i bind a datalist dynamically?? Pin
Chetan Ranpariya8-Jun-07 0:27
Chetan Ranpariya8-Jun-07 0:27 
Hi,

Create an event handler for handling ItemCommand event of datalist as following.

protected void dlst_ItemCommand ( object source, DataListCommandEventArgs e )
{
//Find InnerDatalit.
DataList datalist1 = ( DataList )e.Item.FindControl( "DataList1" );
//Set its datasource
datalist1.DataSource = datasource.
//Bind it.
datalist1.DataBind();
}

This event will call when u click on button in the outer datalist and will find inner datalist and bind it to the data.

Thanks and Regards,
Chetan Ranpariya

GeneralRe: how can i bind a datalist dynamically?? Pin
regin8-Jun-07 1:11
regin8-Jun-07 1:11 
QuestionWebControl SPAN tag Pin
theJazzyBrain7-Jun-07 23:18
theJazzyBrain7-Jun-07 23:18 
AnswerRe: WebControl SPAN tag Pin
Tom John8-Jun-07 0:05
Tom John8-Jun-07 0:05 
GeneralRe: WebControl SPAN tag Pin
theJazzyBrain8-Jun-07 0:48
theJazzyBrain8-Jun-07 0:48 
GeneralRe: WebControl SPAN tag Pin
Tom John8-Jun-07 3:41
Tom John8-Jun-07 3:41 
Questionunable to convert VS2003 project to VS2005 Pin
papy-boom7-Jun-07 23:04
papy-boom7-Jun-07 23:04 
AnswerRe: unable to convert VS2003 project to VS2005 Pin
Venkatesh Mookkan7-Jun-07 23:22
Venkatesh Mookkan7-Jun-07 23:22 
GeneralRe: unable to convert VS2003 project to VS2005 Pin
papy-boom7-Jun-07 23:37
papy-boom7-Jun-07 23:37 
QuestionDynamic Adding Controls to Placeholder & presisit during postback Pin
adnanrafiq7-Jun-07 22:45
adnanrafiq7-Jun-07 22:45 
AnswerRe: Dynamic Adding Controls to Placeholder & presisit during postback Pin
Tom John8-Jun-07 0:02
Tom John8-Jun-07 0:02 
GeneralRe: Dynamic Adding Controls to Placeholder & presisit during postback Pin
adnanrafiq8-Jun-07 0:56
adnanrafiq8-Jun-07 0:56 
GeneralRe: Dynamic Adding Controls to Placeholder & presisit during postback Pin
Tom John8-Jun-07 7:41
Tom John8-Jun-07 7:41 
Questionhow to disabled control asp.net 2003? [modified] Pin
moomoooomoo7-Jun-07 22:35
moomoooomoo7-Jun-07 22:35 
AnswerRe: how to disabled control asp.net 2003? Pin
Manas Bhardwaj7-Jun-07 23:07
professionalManas Bhardwaj7-Jun-07 23:07 
QuestionUpdate GridView on Runtime? Pin
Biju Sam7-Jun-07 22:25
Biju Sam7-Jun-07 22:25 
QuestionExport with Style sheet from Datatable to excel Pin
Biju Sam7-Jun-07 22:23
Biju Sam7-Jun-07 22:23 
QuestionAjax UpdatePanel Flicks! Pin
Gamzun7-Jun-07 22:10
Gamzun7-Jun-07 22:10 

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.