Ask a Question related to ASP.NET General, Design and Development.
-
Lolam #1
How to Capture Control Initaited the Post Back.
Here is my problem,
I am using 3 user controls in a page(Test.aspx) which are
1.Header UC
2.Body UC
3.Footer UC
HeaderUC has a DropDownList control named "ddlList". On
SelectIndexChanged event of ddlList i am repopulating the
page(Test.aspx) with new set of values.Page_Load event is
fired for Test.aspx and i want to capture ddlList control
has fired the post back event in the Page_Load of
Test.aspx.
Is that possible to acheive,If so how.
Bye.
BabuLolam
Lolam Guest
-
2nd attempt - post back event in server control
my code is not getting successful result. how do I get the server control to recognize a button click event ?? ========code============= ... -
post back event in server control
how do I get the button event recognized in the post back from a server control ?? ========code============= Public Class MyButton Inherits... -
Capture an Event in a composite control From control on a page
In the most simple terms assume we have a Composite WebServer control This Composite Control (CC) is just a "label" private Label ... -
Post back
hello all, I have a simple question. on my .aspx page I have bunch of textbox, and dropdowns. One of the dropdown2 has postback = true. When the... -
Post back and control focus issues
Hi, This might help : http://www.developer.com/net/asp/article.php/2237431 Natty Gur, CTO Dao2Com Ltd. 28th Baruch Hirsch st. Bnei-Brak... -
CT #2
Re: How to Capture Control Initaited the Post Back.
You can't do it like that. When a post back is called, the Page_Load event
is triggered before any control event that fired the post back. One solution
is to save a value in a hidden field in response to the client side event
and then examine this hidden field in the Page_Load event.
--
Carsten Thomsen
Enterprise Development with Visual Studio .NET, UML, and MSF
[url]http://www.apress.com/book/bookDisplay.html?bID=105[/url]
"Lolam" <shailesh.lolam@seepz.tcs.co.in> wrote in message
news:090d01c355ba$3254eb90$a401280a@phx.gbl...> Here is my problem,
>
> I am using 3 user controls in a page(Test.aspx) which are
> 1.Header UC
> 2.Body UC
> 3.Footer UC
>
> HeaderUC has a DropDownList control named "ddlList". On
> SelectIndexChanged event of ddlList i am repopulating the
> page(Test.aspx) with new set of values.Page_Load event is
> fired for Test.aspx and i want to capture ddlList control
> has fired the post back event in the Page_Load of
> Test.aspx.
>
> Is that possible to acheive,If so how.
>
> Bye.
> BabuLolam
CT Guest



Reply With Quote

