Hi,      u always set the property AutoPostback=true..

      then put these condition into page load

   In C#:
            if(!Postback)
               {
                 for(int i=0;i<drobdown1.items.count-1;i++)
                    {
                  drobdown1.items.add(txtname.text);
                   }
                }

In Vb/Net:

                if not ispostback then

                 for i=0 to drobdown1.items.count-1
                  drobdown1.items.add(txtname.text)
               next i
           end if


On Wed, Apr 8, 2009 at 11:17 AM, Priyanka <[email protected]> wrote:

>
> i m making in application in which user fill some entries, and go to
> next page on click event and after filling enteries on next page now
> he wants to change the data of previous page..
> for this i have Setthe AUTOPOSTBACK property to false of previous
> page's control. and it s working fine..
> bt wen i set AutoPostBack = "false" on dropdown list then
> OnSelectedIndexChanged event is not working..
> can anybody help me out??
>

Reply via email to