In the article about Custom DropDownList Control with client side data, the javascript will load the drop down list items. The option object has selected property to be set. When I tried it in Internet Explorer (IE), it’s always the item before that is selected. Read the rest of this entry »
Popularity: 5% [?]
One of the common use web control is DropDownList. It provides an easy way of server side data binding to the list, it can be bound to ArrayList or DataTable data, for example. The problem arises when I need to use this control to bind the data from the client side in javascript array.
Using Visual Studio 2003, I created a simple ASP.NET Web application project that has a TestPage.aspx webpage. The page will have a DropDownList, a Button, and a Label control. The page will be like below (the head and body part):
Popularity: 9% [?]
Have you ever encountered that your ASP.NET (aspx) page is not working although you have installed Internet Information Services (IIS) and .NET Framework? This could happen if the IIS was installed after the .NET Framework, which cause some missing Application Mapping in IIS.
Popularity: 3% [?]