Web Application related query
-
i have developed a web application in which i have make use of a single web form which will ivoke web service. In that form, i have used 3 textboxes and a dropdown list box. In that list box i have included 4 services as items. once if i choose a service/ operation, it does the operation which i want but when i try to choose another service/operation, it automatically doubles the amount of items already added into that drop down list box. y it happens? can any one know abt it?.. if so can u plz tell me that what i have to do for eleminating that? thanks, with regards, :) K.Vijaya
-
i have developed a web application in which i have make use of a single web form which will ivoke web service. In that form, i have used 3 textboxes and a dropdown list box. In that list box i have included 4 services as items. once if i choose a service/ operation, it does the operation which i want but when i try to choose another service/operation, it automatically doubles the amount of items already added into that drop down list box. y it happens? can any one know abt it?.. if so can u plz tell me that what i have to do for eleminating that? thanks, with regards, :) K.Vijaya
It sounds like you are adding the items on each postback. You should only do that when you create the page the first time, e.g. when IsPostBack is false. Translation: it snd lk u r addn d items on each postbk. u shd only do dat when u create d page d first time, e.g. when IsPostBack is false --- b { font-weight: normal; }
-
It sounds like you are adding the items on each postback. You should only do that when you create the page the first time, e.g. when IsPostBack is false. Translation: it snd lk u r addn d items on each postbk. u shd only do dat when u create d page d first time, e.g. when IsPostBack is false --- b { font-weight: normal; }
ya its working fine now.. what u gave here is really helpful to me. thanks a lot :):):-D K.Vijaya