Click here to Skip to main content
15,889,867 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hello,
i want to avoid flickering while selected changed event has been raised in modal popup control
Posted
Comments
Karthik Harve 18-Apr-12 2:59am    
Set AutoPostBack="False"
kishore sharma 18-Apr-12 4:54am    
Are You Fetching Any data from server on change of ddl list.
what you are doing on change of ddl value

It seems the DropDownList is not in an UpdatePanel. It had no way to get the value without doing a full postback.
 
Share this answer
 
v2
use this on onSelectedIndexChanged
onchange="return false"
 
Share this answer
 
just write below code in page_load event

C#
page_load()
{
if(!ispostback)
{
your code
}
}



do u know y u need to write this code in page load event
every time page load event is is raise when u will selected index changed event raised
 
Share this answer
 
v2
Comments
kishore sharma 18-Apr-12 4:52am    
DropDownlist selectedindex changed event is no where related to if(!ispostback)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900