vote up 1 vote down star

hie guys.

I have ParentPage which contains 4 user controls and i have user dropdown on each control. whenever i change the selected index .. all user control should populate according to the selected value of user. Can anyone kindly tell me.. how to pass the values to different usercontrol at same time ... Thanks !!!!!

flag

75% accept rate

1 Answer

vote up 2 vote down check

You could create a UserControl base class with the common properties. The properties would need to wrap a session variable, which would be common to each.

eg:

public string Text
        {
            get
            {
                if (Session["UserControlText"] == null || Session["UserControlText"].ToString().Trim() == String.Empty)
                {
                    Session["UserControlText"] = String.Empty;
                }

                return Session["UserControlText"].ToString().Trim();
            }
            set
            {
                Session["UserControlText"] = value;
            }
        }
link|flag
assuming you're posting back each time? If you need to do this on the client, have a look at the jQuery javascript library. – Mark Redman Oct 19 at 7:04
What's JQuery got to do with passing variables through? If that's all the use you're going to put JQuery to then better use simple Javascript instead. – Cyril Gupta Oct 19 at 7:12
Using jQuery is just a suggestion for a good javascript library that makes implementing cross platform javascript a lot easier, sure simple javascript can be used. – Mark Redman Oct 19 at 7:38
@@Mark Is there any other way , other than using session..is it possible to pass property value from one usercontrol to another ??? – Monu Oct 19 at 12:07
@@Mark yeah i'm posting back each time and fetching data from DB according to that fill all the usercontrols again !! – Monu Oct 19 at 12:09
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.