but prob is same..
after clicking on back button to reach the previous page all data
become lost...
i want to retain previous page data to user providing facility to
update according to errors..
perhaps not u get my problem..

On Apr 8, 11:03 am, Sasikumar Chellaiah <[email protected]> wrote:
> 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??- Hide quoted text -
>
> - Show quoted text -

Reply via email to