autopostback

ASP.Net Crafting Postback filter Data result

Hi, There's a private site (Energy Company - so I can't give details) that allows me to enter job numbers and check the current status if I give them an appropriate code for the job. No user or pass required. I'd like to make an automatic lookup in the datagrid I display on my own internal site for employees, by posting the code to th...

Autopostback keeps refreshing site

Hi, I have a dropdownlist, and when I set AutoPostBack="true", the page keeps refreshing. any who knows what might be wrong? <asp:Repeater ID="repFunctionsToAdd" runat="server" OnItemDataBound="repFunctionsToAdd_ItemDataBound"> <ItemTemplate> <div class="person-section"> <div class="row"> <strong> <%# Eval("Name"...

How can I use AutoPostBack inside UpdatePanel

I have two DropDownLists inside an UpdatePanel. The values shown inside the second are dependent of the selectedValue on the first, so, I need AutoPostBack=true. But, whenever the selected value in the first DropDownList is changed causes the UpdatePanel reload. How can this be solved? PS.: The UpdatePanel's UpdateMode property is se...

change the url of redirection of a dropdown with auto postback

Hi!! I have an .aspx page named PropertyListNew.aspx which it's url is rewriten like this: <if url="/Propiedades/(.+)/([0-9]+)"> <rewrite to="/propertyListNew.aspx?currentPage=$2" /> </if> the thing is: I have an asp:DropDownList inside my page (with current url "/Propiedades/(.+)") with autopostbak=true and when that dropdown...