[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.aspnet.mobile

Help - DropDown List event not firing

Joe

6/20/2002 8:41:00 PM

Does anyone now why the OnSelectedIndexChanged of a dropdown lsit will not
fire. I don't set an autopost property like in a standard webform.



<mobile:SelectionList id="IndustryList" runat="server"
OnSelectedIndexChanged="ProcessClick">


<script runat="server" language="c#" ID="Script1" NAME="Script1">

protected void ProcessClick(Object sender, EventArgs e)
{
Image1.ImageUrl = "http://localhost/myapp/images/packages.jpg";

}

</script>