Click here to Skip to main content
15,916,019 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionencoding Pin
samerh23-Apr-09 0:14
samerh23-Apr-09 0:14 
AnswerRe: encoding Pin
G. K. Singh23-Apr-09 2:13
G. K. Singh23-Apr-09 2:13 
QuestionAccess input hidden value of a usercontrol in another usercontrol Pin
Technobizz22-Apr-09 23:29
Technobizz22-Apr-09 23:29 
AnswerRe: Access input hidden value of a usercontrol in another usercontrol Pin
Nyoti Rukadikar23-Apr-09 1:26
Nyoti Rukadikar23-Apr-09 1:26 
GeneralRe: Access input hidden value of a usercontrol in another usercontrol Pin
Technobizz23-Apr-09 2:42
Technobizz23-Apr-09 2:42 
GeneralRe: Access input hidden value of a usercontrol in another usercontrol Pin
Nyoti Rukadikar23-Apr-09 3:01
Nyoti Rukadikar23-Apr-09 3:01 
GeneralRe: Access input hidden value of a usercontrol in another usercontrol Pin
Technobizz23-Apr-09 3:43
Technobizz23-Apr-09 3:43 
GeneralRe: Access input hidden value of a usercontrol in another usercontrol Pin
Nyoti Rukadikar23-Apr-09 4:18
Nyoti Rukadikar23-Apr-09 4:18 
ok. Are you able to execute the events in your user controls?

If not, then you need to do something like this.
EventInfo SomeEvent = AnyControlInYourUserControl.GetType ().GetEvent("Click");
SomeEvent .AddEventHandler(AnyControlInYourUserControl, new EventHandler( this.AnyControlInYourUserControl_Click));
Write a handler for this.

But I think, you are already executing postback, however, since the page is dynamically being created, on post back you are loosing the value of the hidden variable. So in the event handler function above you can store the value of the variable in the session and then can access it.

I am sorry, if I misunderstood anything. I will post the code tonight if you want.

Thanks,
Nyoti
GeneralRe: Access input hidden value of a usercontrol in another usercontrol Pin
Technobizz23-Apr-09 8:36
Technobizz23-Apr-09 8:36 
QuestionDevelop Library like SCRIBD or Google Books Pin
abthea22-Apr-09 23:27
abthea22-Apr-09 23:27 
AnswerRe: Develop Library like SCRIBD or Google Books Pin
Ashfield23-Apr-09 1:52
Ashfield23-Apr-09 1:52 
QuestionGet online users count and registered users count ( How wrong is my logic ? #1 ) Pin
Hristiyan22-Apr-09 23:06
Hristiyan22-Apr-09 23:06 
AnswerRe: Get online users count and registered users count ( How wrong is my logic ? #1 ) Pin
SeMartens23-Apr-09 0:33
SeMartens23-Apr-09 0:33 
GeneralRe: Get online users count and registered users count ( How wrong is my logic ? #1 ) Pin
Hristiyan23-Apr-09 1:43
Hristiyan23-Apr-09 1:43 
GeneralRe: Get online users count and registered users count ( How wrong is my logic ? #1 ) Pin
SeMartens23-Apr-09 2:53
SeMartens23-Apr-09 2:53 
GeneralRe: Get online users count and registered users count ( How wrong is my logic ? #1 ) Pin
Hristiyan23-Apr-09 3:28
Hristiyan23-Apr-09 3:28 
GeneralRe: Get online users count and registered users count ( How wrong is my logic ? #1 ) Pin
SeMartens23-Apr-09 3:33
SeMartens23-Apr-09 3:33 
QuestionFirst time starting with HTTPS hosting Pin
Nadia Monalisa22-Apr-09 22:44
Nadia Monalisa22-Apr-09 22:44 
QuestionHow to ReFresh a user Control Pin
Vimalsoft(Pty) Ltd22-Apr-09 22:26
professionalVimalsoft(Pty) Ltd22-Apr-09 22:26 
AnswerRe: How to ReFresh a user Control Pin
Deshbir Singh22-Apr-09 23:14
Deshbir Singh22-Apr-09 23:14 
GeneralRe: How to ReFresh a user Control Pin
Vimalsoft(Pty) Ltd22-Apr-09 23:35
professionalVimalsoft(Pty) Ltd22-Apr-09 23:35 
AnswerRe: How to ReFresh a user Control Pin
Nyoti Rukadikar23-Apr-09 0:20
Nyoti Rukadikar23-Apr-09 0:20 
GeneralRe: How to ReFresh a user Control Pin
Vimalsoft(Pty) Ltd23-Apr-09 0:23
professionalVimalsoft(Pty) Ltd23-Apr-09 0:23 
GeneralRe: How to ReFresh a user Control Pin
Nyoti Rukadikar23-Apr-09 1:42
Nyoti Rukadikar23-Apr-09 1:42 
GeneralRe: How to ReFresh a user Control Pin
Vimalsoft(Pty) Ltd23-Apr-09 1:55
professionalVimalsoft(Pty) Ltd23-Apr-09 1:55 

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.