Tagged Questions
The autopostback tag has no wiki summary.
10
votes
4answers
11k views
C# How to set the autopostback property when using asp.net mvc?
I am using asp.net MVC framework. On my page i have a dropdwonbox and when an option is clicked i want to go to another page. But i can't find how/where to set the autopostback property to true. This ...
10
votes
6answers
12k views
Asp.Net, DropDownList, AutoPostBack and Google Chrome
I've a simple asp.net page (framework 3.5) and an UpdatePanel with a series of dropdownlist I want to populate asyncronously. All works fine in all major browsers (Opera, Safari, IE6, IE7, FF3), but ...
5
votes
4answers
2k views
Have to click button twice in asp.net (after autopostback textbox)
On a page I have:
<asp:TextBox runat="server" ID="EmailTextBox" AutoPostBack="true" OnTextChanged="EmailTextBox_Changed" />
<asp:Button runat="server" ID="SearchButton" ...
4
votes
4answers
9k views
DropDownList SelectedIndex value not updating on AutoPostback
It looks like this question was addressed here, but his solution did not work for me. I am creating a dynamic dropdown menu system that populates a secondary dropdownlist with the results of a query ...
4
votes
3answers
5k views
AutoPostback with TextBox loses focus
A TextBox is set to AutoPostback as changing the value should cause a number of (display-only) fields to be recalculated and displayed.
That works fine.
However, when the field is tabbed out of, the ...
3
votes
1answer
411 views
Focus on TextBox is triggering PageLoad using C# .net
I have a function that set focus to the next field via JS on the form when press enter:
function pressEnter(obj, e) {
var key = e.keyCode ? e.keyCode : e.which;
if (key === 13) {
var ...
3
votes
3answers
944 views
Why SelectedIndexChanged fires for a DropDownList when a button is clicked?
I have an ASP.NET DropDownList with AutoPostBack=true and EnableViewState=false. I have a button on the page that does nothing. If I change the selection in the ddl, it posts back , which is expected. ...
3
votes
2answers
1k views
RequiredFieldValidator not working under firefox
Hi guys I use 2 requiredfiledvalidator for 2 selects, one is working but the second one (the one I need) isnt
<asp:dropdownlist id="ddlMod" runat="server" Width="235px" AutoPostBack="True" ...
3
votes
2answers
1k views
jQuery Autocomplete losing text on AutoPostBack
I have a jQuery Autocomplete field on an ASP.Net Webform and everything has been working great until now. I also have a DropDownList that I have a need to fire onSelectedIndexChanged with ...
2
votes
2answers
449 views
How can I refresh a dropdownlist during an event of another dropdownlist without refreshing whole web page?
I am developing my first asp.net website, my requirement is to refresh DropDownListB at SelectedIndexChanged event of DropDownListA, I have set AutoPostBack="True" for DropDownListA. Now the ...
2
votes
2answers
5k views
Asp.NET DropDownList Resets SelectedIndex after PostBack
After doing a lot of research online I'm still stumped by this problem. I have a page that loads the names and count of categories into a drop down list. I only do this if !(Page.IsPostBack). When ...
2
votes
1answer
1k views
How to avoid UpdatePanel scrolling on AutoPostBack?
I have an ASP.NET FormView within an updatepanel. I'm auto-saving the form by setting AutoPostBack=true for each of the items within the FormView.
This means the user can click a few elements in ...
2
votes
1answer
195 views
why does autopostback from button click duplicate part of url
Example: url is http://www.mydoman.com/test.aspx/88
I click an asp:Button which cause a postback, but now the url comes up:
www.mydoman.com/test.aspx/test.aspx
There is nothing special in the ...
2
votes
3answers
775 views
second time click of a button inside updatePanel, the event does not fire in jquery
In my aspx file, I have:
<asp:UpdatePanel ID="UpdatePanel3" UpdateMode="Always" runat="server">
<ContentTemplate>
<asp:Button ID="Button1" runat="server" Text="Button" />
...
2
votes
2answers
1k views
C# GridView dynamically built columns with textboxes ontextchanged
My page is a bulk order form that has many products and various size options.
I've got a gridview that has a 3 static columns with labels.
There are then some dynamically built columns.
Each of the ...
2
votes
2answers
2k views
Stop disappearing ModalPopup panel (shown by ModalPopupExtender ) on changing text of a textbox (TextChanged event fired by AutoPostback)
Hi
I have a html table inside of a panel control.
It will be shown by a ModalPopupExtender by clicking on a LinkButton.
inside of the panel, there is a textbox which its "AutoPostBack" property is ...
2
votes
7answers
11k views
DropdownList autoposback after client confirmation
I have a dropdownlist with the autopostback set to true. I want the
user to confirm if they really want to change the value,
which on post back fires a server side event (selectedindexchanged).
I ...
1
vote
1answer
68 views
DropDownList postback issue
I have a DropDownList inside a usercontrol, which is itself inside a usercontrol.
The problem I have is that when someone selects an item from the DDL, I need to fire a postback so I can update some ...
1
vote
1answer
75 views
asp.net postbacks won't fire
I've made a simple ASP.net website and everything works fine on my computer. But on my colleague's computer no postbacks are fired although he uses the same OS (Win 7) AND the same browser as I do ...
1
vote
1answer
367 views
dropdownlist in a gridview returns to default vaule after selection
I have a dropdownlist in a gridview, also have a a linkbutton, button and panel. as shown below. when i select a value in dropdown list it returns to default
I have tried to put the gridview in an ...
1
vote
2answers
132 views
Listbox Scrolling to Top on autopostback
Why does asp.net listbox always scroll to top upon selecting an item when autopostback is on? How can I prevent this from happening?
1
vote
4answers
105 views
Password clearing on AutoPostBack in ASP.NET
I am using TextBox (in Password mode) for validation. In which I have to use AutoPostBack to verify the strength of password but unfortunately when ever the TextBox is auto posted all the values are ...
1
vote
2answers
477 views
Stop DropDownList In Asp.net webforms from refreshing the page
I have a normal dropdownlist:
<asp:DropDownList ID="kindofser" runat="server" AutoPostBack="True"
Height="21px" Width="166px"
...
1
vote
3answers
568 views
customvalidator for dropdownlist not being invoked (apparently)
Writing a custom validator for a dropdownlist that is using autopostback. Seems to ignore the validation altogether. Why is it ignored and is there an easy fix?
Note I did not use ControlToValidate
...
1
vote
1answer
194 views
Problem in using AutoPostback in asp.net c#
i have two text box controls with calender extender and a dropdownlist as follows.
<asp:TextBox ID="txtStartDate" runat="server" ReadOnly="True"></asp:TextBox>
<asp:CalendarExtender ...
1
vote
2answers
104 views
How to eliminate racing conditions for elements with autopostback=true in ASP.NET?
We develop using Sharepoint, therefore we have to stick to ASP.NET 3.5.
In case if our page have field with autopostback and a button we encounter race conditions as soon as user was on autopostback ...
1
vote
2answers
299 views
AutoPostBack conflict with jQuery
I want to do this but in asp.net. How would I write this in asp.net/the code behind? I already have
protected void chkBox_CheckedChanged(object sender, EventArgs e)
{
if (chkBox.Checked){}
...
1
vote
3answers
747 views
Populating a DropDownList from another DropDownList using AJAX 3.5
I am using asp.net 3.5 with the ajax toolkit.
The problem: I have a custom control with two drop down lists in an update panel. The first DDL has the property AutoPostBack="true" and upon selection ...
1
vote
2answers
217 views
ListBox selections does not show up after autopostback
I know that this is not the first time a question about this issue has been posted here, but I haven't managed to find an answer to my question.
I have a number of ListBoxes on my page:
<tr>
...
1
vote
2answers
1k views
asp dropdownlist - server side SelectedIndexChanged only fires when the mouse is used, not when the selection is set via code… Can anyone help?
New to posting here, but I've read a lot of the other threads & found great answers in the past! I'm hoping someone knows why this may be happening... On my DDL the server side ...
1
vote
3answers
121 views
Autopostback resetting my list
I want to store items to a list but everytime i press the confirm button to add one item to the list the page will refresh and reset my list. How do i stop this from happening whilst at the same time ...
1
vote
2answers
572 views
Validation Message still show up when an autopostback dropdownlist fires
I have a required field validator to validate a dropdownlist. this dropdownlist is an autopostback one, and it's causevalidation property is set to be false.
the issue is, when I select the default ...
1
vote
1answer
576 views
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 ...
1
vote
1answer
216 views
With 'AutoPostBack=false', how do I trigger the postback that would have executed after running some JavaScript?
With AutoPostBack=false, how do I trigger the postback that would have executed after running some JavaScript?
1
vote
3answers
319 views
C#: Preventing AutoPostBack according to a confirmation dialog
I want to show a confirmation dialog when a specific value is selected in an asp:DropDownList. If the confirmation dialog returns false (cancel) then I want to prevent the AutoPostBack.
...
1
vote
1answer
519 views
ASP.NET No postback on asp:ImageButton
I have an ASP page with an asp:DropDownList (with AutoPostBack="true") so that when the user changes it, it reload the appropriate data.
Under that control i have a list of UserControls, that ...
1
vote
2answers
148 views
DropDownList switches from Spanish into English?
Why would a DropDownList switch from Spanish into English when one selects a new item in it? And how does one prevent that from happening?
<asp:DropDownList ID="ddl_r1pc" runat="server" ...
1
vote
1answer
1k views
Dropdown OnSelectedIndexChanged not firing
The OnSelectedIndexChanged event is not firing for my dropdown box. All forums I have looked at told me to add the AutoPostBack="true", but that didn't change the results.
HTML:
<html ...
1
vote
1answer
2k views
JavaScript “confirm” on SelectedIndexChange of RadioButtonList
I have a RadioButtonList control and I would like to do a Javascript "confirm" when a user tries to change the index. Currently AutoPostBack is set to TRUE. I can, of course, just call __doPostBack ...
1
vote
2answers
2k views
Are the ASP.net __EVENTTARGET and __EVENTARGUMENT susceptible to SQL injection?
A security review was done against one of our ASP.net applications and returned in the test results was a SQL Injection Exposures considered to be a high risk item.
The test that was performed ...
1
vote
1answer
608 views
How can I delay a ASP.NET AutoPostBack so JavaScript fires first?
I've got an odd situation with a text box and an autocomplete setup on my page. I'm using a JQuery based autocomplete on a text box that has AutoPostBack="True". This works perfect if I use the ...
1
vote
1answer
44 views
How do you determine what element of a form is the one responsible for an autopostback in ASP.NET VB?
I have a number of dropdown lists that I'm trying to chain together and they all have autopostback. How can I tell which one of the dropdown lists was the one responsibe for the autopostback? I'm very ...
1
vote
2answers
2k views
Autopostback=True for a Textbox and RequiredFieldValidator next to it. But when submitting form after Posting back by TextChanged event to the Textbox, RequiredFieldValidator doesn't work?
aspx form I have a textbox (Textbox1) with Autopostback=True.
I also set a RequiredFieldValidator (RequiredFieldValidator1) next to it. But when Posting back by TextChanged event of Textbox1, ...
1
vote
5answers
4k views
HTML form with single text field + preventing postback in Internet Explorer
I have noticed a rather strange behaviour in IE.
I have a HTML form with a single input text field and a submit button
On Submit click I need to execute a client side JavaScript function that does ...
1
vote
2answers
732 views
Is Postback considered as a pageview by google ads or CPM ads?
I would like to know if a postback (asp.net) is considered as a pageview by google ads or CPM ads or it is ignored.
How does google ads differentiate between a postback and a pageview? Any inputs ...
1
vote
4answers
313 views
ASP DropDown causing ViewState to appear in Address bar
If you visit this page in Internet explorer, and choose a value from the "Current Media Releases" dropdown on the top right, eventually IE will try to redirect you to an ugly url containing this ...
1
vote
4answers
15k views
ASP.NET DropDownList AutoPostback Not Working - What Am I Missing?
I am attempting to get a DropDownList to AutoPostBack via an UpdatePanel when the selected item is changed. I'm going a little stir-crazy as to why this isn't working.
Does anyone have any quick ...
0
votes
2answers
18 views
MVC 3 - AutoPostback with CauseValidation=false Behavior
I'm familiar with the method of submitting a form via a change event like or a checkbox's check event. Most articles explain how to find the first form using jQuery and invoke it's submit() method. ...
0
votes
2answers
57 views
Setting Session Variables when image buttons are clicked?
I have two image buttons on the page. When either is clicked it needs to set the session variables yesID and NoId before the page is posted back. I tried putting the code in the click events for each ...
0
votes
1answer
42 views
Image Button and post back issue
I have two image buttons with Click events assigned to them. There is code in each event. When they are clicked it runs the page load function before it runs the code in the click events. How can i ...