Click here to Skip to main content
15,913,027 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Dynamically created controls disappearing Pin
toptone7827-Jul-06 7:42
toptone7827-Jul-06 7:42 
GeneralRe: Dynamically created controls disappearing Pin
toptone7827-Jul-06 7:49
toptone7827-Jul-06 7:49 
GeneralRe: Dynamically created controls disappearing Pin
ToddHileHoffer27-Jul-06 7:57
ToddHileHoffer27-Jul-06 7:57 
QuestionDatagrid Pin
sunilkgopinath27-Jul-06 6:37
sunilkgopinath27-Jul-06 6:37 
AnswerRe: Datagrid Pin
ToddHileHoffer27-Jul-06 6:56
ToddHileHoffer27-Jul-06 6:56 
QuestionMaster page menu click event handleable by content? Pin
Member 9627-Jul-06 5:56
Member 9627-Jul-06 5:56 
AnswerRe: Master page menu click event handleable by content? Pin
Not Active27-Jul-06 6:09
mentorNot Active27-Jul-06 6:09 
AnswerRe: Master page menu click event handleable by content? [modified] Pin
ToddHileHoffer27-Jul-06 6:17
ToddHileHoffer27-Jul-06 6:17 
Yes you can do so. Add an event handler to the page init
Here is the vb.net if you need c# let me know I'll try to convert.

Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init<br />
'FInd the control in your master page and add the event handler<br />
   Dim ddl As DropDownList<br />
        ddl = CType(Me.Master.FindControl("ddlStates"), DropDownList)<br />
        AddHandler ddl.SelectedIndexChanged, AddressOf ddlStates_SelectedIndexChanged<br />
<br />
'ddlState_SelectedIndexChanged <br />
<br />
end sub<br />
<br />
'Method called on post back after user click<br />
    Protected Sub ddlStates_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs)<br />
'Code to fire from master page event<br />
end sub<br />



-- modified at 12:17 Thursday 27th July, 2006
GeneralRe: Master page menu click event handleable by content? Pin
Member 9628-Jul-06 4:57
Member 9628-Jul-06 4:57 
AnswerRe: Master page menu click event handleable by content? Pin
minhpc_bk27-Jul-06 16:13
minhpc_bk27-Jul-06 16:13 
Questionhey , i wanna select multiple rows in the gridview Pin
Mohammed Amine27-Jul-06 5:39
Mohammed Amine27-Jul-06 5:39 
AnswerRe: hey , i wanna select multiple rows in the gridview Pin
Not Active27-Jul-06 6:00
mentorNot Active27-Jul-06 6:00 
GeneralRe: hey , i wanna select multiple rows in the gridview Pin
Mohammed Amine27-Jul-06 6:05
Mohammed Amine27-Jul-06 6:05 
QuestionI want to only allow users to use IE exclusively Pin
widget127-Jul-06 5:13
widget127-Jul-06 5:13 
AnswerRe: I want to only allow users to use IE exclusively Pin
_AK_27-Jul-06 5:15
_AK_27-Jul-06 5:15 
GeneralRe: I want to only allow users to use IE exclusively Pin
Colin Angus Mackay27-Jul-06 5:57
Colin Angus Mackay27-Jul-06 5:57 
GeneralRe: I want to only allow users to use IE exclusively Pin
widget127-Jul-06 7:21
widget127-Jul-06 7:21 
AnswerWell lets see Pin
Ennis Ray Lynch, Jr.27-Jul-06 5:28
Ennis Ray Lynch, Jr.27-Jul-06 5:28 
GeneralRe: Well lets see Pin
_AK_27-Jul-06 5:33
_AK_27-Jul-06 5:33 
QuestionIs it possible to store data in database Pin
sabby200627-Jul-06 4:59
sabby200627-Jul-06 4:59 
AnswerRe: Is it possible to store data in database Pin
_AK_27-Jul-06 5:17
_AK_27-Jul-06 5:17 
AnswerRe: Is it possible to store data in database Pin
J4amieC27-Jul-06 5:18
J4amieC27-Jul-06 5:18 
AnswerRe: Is it possible to store data in database Pin
Paddy Boyd27-Jul-06 5:36
Paddy Boyd27-Jul-06 5:36 
GeneralRe: Is it possible to store data in database Pin
_AK_27-Jul-06 5:37
_AK_27-Jul-06 5:37 
JokeRe: Is it possible to store data in database Pin
Not Active27-Jul-06 5:54
mentorNot Active27-Jul-06 5:54 

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.