Hi, I'm having a small problem with my website. It functions without error, but it's not the prettiest way of doing things. I'm using ASP.NET with C#, and I have a bunch of objects on my form. What's happening is every time the user makes a selection from a drop down box, it does a postback to the server to update the page content. Is there anyway to do this without having the entire page refresh each time the user makes a selection?
Here is the page so you can see exactly what I'm talking about:
Try setting AutoPostBack on the drop down list to false. Either that or you could put the drop down list in an update panel, that way, .NET manages the AJAX calls of when to update the page.
Try setting AutoPostBack on the drop down list to false. Either that or you could put the drop down list in an update panel, that way, .NET manages the AJAX calls of when to update the page.
Bookmarks