Help regarding autopostback.

  • Thread starter Thread starter trialproduct2004
  • Start date Start date
T

trialproduct2004

hi all
i am new to asp.net
can some one tell me use of autopostback of dropdownlist.
When i set this property to true my selectionchanged event is getting
fired.
but when this property is set to false then event is not getting
raised.
why this is happening.
please help me.
Thanks in advance.
 
Autopostback = True means that when the dropdownlist selection is changed,
the page is immediately requested again from the server (allowing the
selection changed event to be handled immediately server side). Autopostback
= False means that initially nothing happens. However, a selection changed
event is raised, and the server will handle this event once the page is
requested again (due to another autopostback event for example).

Hope this helps,

Regards JanXL.nl
 
Hi
thanks for your reply.
but why it is happening that code in my onselectionchanged is not
getting executed
any help will be appreciated.
thanks in advance.
 
Hi
thanks for your reply.
but why it is happening that code in my onselectionchanged is not
getting executed
any help will be appreciated.
thanks in advance.

I would need to see your code as well as html to understand your problem
better.

Regards JanXL
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top