Click here to Skip to main content
15,910,121 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: IE VS Mozila Pin
Amit Kumar G17-Dec-06 7:03
Amit Kumar G17-Dec-06 7:03 
QuestionHow to debug a COM from an ASP.NET client? Pin
almc15-Dec-06 7:21
almc15-Dec-06 7:21 
AnswerRe: How to debug a COM from an ASP.NET client? Pin
Tina P17-Dec-06 11:52
Tina P17-Dec-06 11:52 
GeneralRe: How to debug a COM from an ASP.NET client? Pin
almc18-Dec-06 3:58
almc18-Dec-06 3:58 
QuestionASP.NET and Excel Pin
User 358370215-Dec-06 6:27
User 358370215-Dec-06 6:27 
AnswerRe: ASP.NET and Excel Pin
indianet15-Dec-06 7:07
indianet15-Dec-06 7:07 
QuestionEvents with Master Pages Pin
Chris McGlothen15-Dec-06 6:14
Chris McGlothen15-Dec-06 6:14 
AnswerRe: Events with Master Pages Pin
ToddHileHoffer15-Dec-06 7:22
ToddHileHoffer15-Dec-06 7:22 
To access master page controls from the content page do something like this.
<br />
  protected void Page_Load(object sender, EventArgs e)<br />
        {<br />
            this.Init += new EventHandler(Page_Init);<br />
        }<br />
<br />
 protected void Page_Init(object sender, EventArgs e)<br />
        {<br />
   DropDownList ddl = (DropDownList)this.Master.FindControl("ddl");<br />
            ddl.SelectedIndexChanged += new EventHandler(ddl_SelectedIndexChanged);<br />
        }<br />
protected void ddl_SelectedIndexChanged(object sender, EventArgs e)<br />
        {<br />
              //put code here<br />
        }<br />



QuestionRe: Events with Master Pages Pin
Chris McGlothen15-Dec-06 7:58
Chris McGlothen15-Dec-06 7:58 
AnswerRe: Events with Master Pages Pin
ToddHileHoffer15-Dec-06 8:20
ToddHileHoffer15-Dec-06 8:20 
QuestionRe: Events with Master Pages Pin
Chris McGlothen15-Dec-06 8:26
Chris McGlothen15-Dec-06 8:26 
AnswerRe: Events with Master Pages Pin
ToddHileHoffer15-Dec-06 8:38
ToddHileHoffer15-Dec-06 8:38 
GeneralRe: Events with Master Pages Pin
Chris McGlothen15-Dec-06 8:39
Chris McGlothen15-Dec-06 8:39 
GeneralRe: Events with Master Pages Pin
ToddHileHoffer15-Dec-06 8:46
ToddHileHoffer15-Dec-06 8:46 
QuestionAdding TextBox Programmatically Pin
nature027615-Dec-06 6:06
nature027615-Dec-06 6:06 
AnswerRe: Adding TextBox Programmatically Pin
Colin Angus Mackay15-Dec-06 6:19
Colin Angus Mackay15-Dec-06 6:19 
GeneralRe: Adding TextBox Programmatically Pin
nature027615-Dec-06 6:42
nature027615-Dec-06 6:42 
QuestionAdding TextBox Programmatically Pin
nature027615-Dec-06 6:06
nature027615-Dec-06 6:06 
AnswerRe: Adding TextBox Programmatically Pin
Colin Angus Mackay15-Dec-06 6:19
Colin Angus Mackay15-Dec-06 6:19 
QuestionAdding Controls programmtically. Pin
nature027615-Dec-06 5:59
nature027615-Dec-06 5:59 
AnswerRe: Adding Controls programmtically. Pin
Colin Angus Mackay15-Dec-06 6:18
Colin Angus Mackay15-Dec-06 6:18 
GeneralRe: Adding Controls programmtically. Pin
nature027615-Dec-06 6:39
nature027615-Dec-06 6:39 
GeneralRe: Adding Controls programmtically. Pin
Colin Angus Mackay15-Dec-06 6:57
Colin Angus Mackay15-Dec-06 6:57 
QuestionDatagrid Problem Pin
ADY00715-Dec-06 5:29
ADY00715-Dec-06 5:29 
AnswerRe: Datagrid Problem Pin
Pradipta Basu15-Dec-06 10:26
Pradipta Basu15-Dec-06 10:26 

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.