You can add a upload image to the form. When the user changes the item in the drop-down list, raise the onchange event with javascript. An example of adding a handler:
protected void Page_Load(object sender, EventArgs e) { dropdownlist1.Attributes.Add("onchange", "document.getElementById(\"loading_image\").style.visibility = \"visible\";"); }
Before that, you must add an image to the form:
<img style="visibility:hidden;" src="imageurl" runat="server" id="loading_image" />
source share