The term postback has two meanings, depending on the context, one in relation to web development, and one in relation to open-source software. In the context of web development, a postback is an HTTP POST to the same page that the form is on. In the context of open source software, the term ...
1
vote
2answers
11 views
UpdatePanel within jQuery.load()-ed content breaks out of the page on postback
As a preface to my situation, it should be noted that I am using ASP.NET (C#) and jQuery.
So, here's the layout: I have a top div (header/menu) that spans the entire horizontal length of the page. ...
0
votes
5answers
43 views
Calling server side event in asp.net from java script
Surely will be marked as duplicate one but after tons of question and example i couldn't solve my problem.
What i want?
Calling server side event handler in asp.net from client side java script it is ...
0
votes
0answers
12 views
Stop JQueryUI Calendar clearing Asp.net Textbox on postback
This one is starting to bug me and Googleing doesn't seem to be turning up working results for me.
I have a JQueryUI Calendar on an ASP.NET Textbox which always clears the text when a button causes a ...
0
votes
0answers
20 views
Validation fails but postback happens for Master content page buttons
I have been facing this problem for a long.
I have a save button in the master page and there are 10 content pages, when the save button clicked, the corresponding content page (which is opened up) ...
2
votes
1answer
31 views
Buttonclick and postback issue
Below is a code wherein I want to display a message if there is a postback.
protected void Page_Load(object sender, EventArgs e)
{
if (Page.IsPostBack)
{
Response.Write("Hidden value ...
0
votes
1answer
14 views
ListBox selected index is lost after PostBack in ASP.NET
I've got an issue with a ListBox in ASP.NET application: after manual selection, an event "SelectedIndexChanged" fires, but its handler cannot keep neither the selected index nor the selected item. ...
0
votes
2answers
42 views
Button in UpdatePanel triggers event, but the page doesn't update
Here's the markup:
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<div class="well well-large">
<form class="navbar-form ...
0
votes
1answer
25 views
intercept __doPostBack function
According to this post you can intercept the post by overriding this function __doPostBack but it wont work. If I view the generated source I am not able to see the function that is meant to be auto ...
0
votes
0answers
16 views
Persist dropdown value on postback in MVC
TempData["myList"] =
new SelectList(new[] { "FirstName", "LastName", "Email" }
.Select(x => new { value = x, text = x }),
"value", "text", "FirstName");
...
0
votes
0answers
50 views
MVC 4 Href or onclick without Postback
Hello i have a Question related to MVC postbacks
the problem/issue is
i have an anchor with the following code
<a style="text-align:left;" data-role="button" ...
0
votes
2answers
14 views
Missing selected value from RadioButtonList after PostBack
First the page loads and shows an empty textbox and a button "GO"
Upon clicking the button "GO" a radioButtonList already in the page is loaded from a table based on the text in the textbox.
The ...
0
votes
1answer
17 views
dropdown initializing input type=“text” on postback
I have several text boxes <input type="text"> as well a a dropdownlist<asp:DropDownList>
I prefer to use this asp control as I want to bind it with data. The thing is every time I make a ...
1
vote
1answer
38 views
Registering a user control always postback hen the form loaded
Hi all I have created a user control and registered it in web.config with some extension and calling it on the page where ever required. When I use that when ever the page get loaded the user control ...
0
votes
1answer
20 views
ModalPopupExtender postback dual Listbox
I have dual listboxs (followed by http://www.meadmiracle.com/dlb/DLBDocumentation.aspx) which work well. Now I need a ModalPopupExtender page to confirm user's selected. when user click button submit ...
0
votes
1answer
27 views
How to disable postback in order to make some test with client side
I have a LinkButton which make a postback when I click on it. I would like to do the postback if some fields are complete. I can test it with javascript but I don't know how to disable postback and ...
0
votes
3answers
52 views
Dynamic Buttons won't hold value after Post Back
I have buttons that display dynamically when the page loads.
What is suppose to do is:
Click a dynamic button, displays to a text box
Click Issue Ticket
Print Ticket 1.
If I click on the next ...
1
vote
0answers
40 views
Add events to a Dynamically generated Dropdown C#
I've been generating Dynamics Control without an issue, until I had the necessity to access a server side event in a SelectIndexChanged of a dynamically generated DropDownList. I followed the ...
1
vote
1answer
45 views
Checkbox group not detecting if checked
So I am recieving some postback data back from a form and need to get the checkbox values for a group of checkboxes in a parent control. I coded it up and it was working but now no longer works and I ...
0
votes
1answer
6 views
converting time in query using to_char
my query results in a time of: '9:00 AM'
I must sent this to another program that only recognizes the time of: 09:00am.
I have read the examples of to_char in the postgresql manual, but cannot ...
0
votes
1answer
26 views
Example of javascript validation on form controls before a postback
I am designing a web-form to save some data. I am relatively new in this field .
Can someone give some exmamples of how to implement validations on form controls using javascript before a postback ...
0
votes
0answers
31 views
ASP.Net MVC retains posted property
This must be something very simple but why is the value I enter and post being somehow retained when I create a new view model to render and redisplay the same form? It's as if the old school ...
0
votes
1answer
27 views
handle click event custom server control
I have control with imagebutton:
...
ImageButton btn;
public MyControl()
{
btn = new ImageButton();
}
protected override void OnInit(EventArgs e)
{
...
0
votes
0answers
22 views
determine postback element from custom control: imagebutton
How can I determine which button caused a postback and get postback value?Here is server control code:
(--- dumm for mostly code question --- dumm for mostly code question --- dumm for mostly code ...
1
vote
2answers
129 views
Perform postback on ASP.Net control dynamically added by jQuery
I have a website that is running under ASP.Net. It has a number of ascx controls that each represent a different page. The master page would call LoadControl() on the ascx and then add it to a panel. ...
1
vote
0answers
49 views
How to get rid of the view state caching for ASP.NET page
I make up a dynamic table in a code behind file using the code as such:
<table border="0" cellpadding="4" cellspacing="0">
<asp:PlaceHolder ID="PlaceHolder1" EnableViewState="false" ...
-1
votes
1answer
58 views
Dynamic ListBox Controls Weird Behavior on PostBack [closed]
I create ListBox controls dynamically. When the last ListBox is added and a selection is made, the listBox looses its selection only after the initial slections are made. It's hard to explain so I ...
0
votes
2answers
77 views
When deployed, asp.net page will not run onload or postback event functions from server side
in my asp.net application (VB is server side background) - I have a page that will not run onload or postback server side events. In the local development build, it runs correctly but when published ...
0
votes
3answers
65 views
c# entity , deleting a db record from a drop down list selected value
How do I delete a record from drop down list selected value?
I have populated the drop down list from database and I am having problems to delete it with a delete button. Am I doing the right way? ( ...
0
votes
0answers
59 views
ASP.NET MVC ViewModel is null on Post Back - sometimes
depending on my input in an HTML form (6 or 6.5 - or in general, integer VS float) I get or don't get the following exception (it works with int and doesn't work with float):
The model item passed ...
0
votes
1answer
55 views
Listview change applies after 2nd postback?
i have a listview and a button out of this list view, on button click i want to add a "insert" row defined in InsertItemTemplate. The problem is when i click the button, this row is added(i know this ...
0
votes
1answer
41 views
Invalid postback or callback argument (HiddenField and container Visible=false)
I've not found answers that matched my circumstances, so I'm posting an answered question hoping it will help others.
I was getting the error
Invalid postback or callback argument. Event ...
0
votes
0answers
24 views
A disabled ASP Button causes post back after enabling conditionally
I have an asp button that opens a modal dialogue window. I didnt want it to postback so I did this.
<asp:Button ID="btnTo" runat="server" Text="To..." Enabled="false" ...
0
votes
2answers
37 views
Leaving a asp.net application then hitting back isn't working
I have an asp.net application and am experiencing a surprising behavior.
Whenever I leave one particular page in the application, The back button starts behaving in the following way:
hitting back ...
0
votes
0answers
25 views
asp net : how to display a waiting image for all postbacks
I need in display a waiting image everytime is raised a postback.
I did this with css and jquery, but it doesn't work correct:
the waiting image must appear immediately after control losts the focus ...
0
votes
1answer
51 views
asp.net gridview without database
Hi guys I have a question. Is there some way to populate a gridview in asp.net without using a database? I'm using a gridview to show information but I've seen that everytime I try to insert more rows ...
0
votes
1answer
24 views
Amazon Product API: Redirect to URL/ send parameter (postback) after Amazon sale
Using Amazon associates I advertise a link. How do I get a parameter back after a sale has been made? (cid)
I want to redirect to a url after the conversion, or to shoot a parameter back to my site, ...
0
votes
1answer
48 views
performing .net postback on jquery ui tab selection
I have a set of tabs on my web form using JQueryUI tabs.
When I click on a tab, I want the data on that tab to load (only when I click on the tab). As I don't want to load all tab data on initial ...
1
vote
1answer
60 views
Fail to clear selected item with Javascript on inherited ASP.Net RadioButtonList
I need to clear the selected item from a custom RadioButtonList, but its not working on postback.
I've got a custom control that inherits from the ASP.Net RadioButtonList.
When the control has an ...
0
votes
1answer
42 views
Drop Down List not getting populated on partial post back
I am trying to populate a drop down list on partial post back, not sure why it's not working.
this works,
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
...
0
votes
0answers
202 views
file upload inside user control inside masterpage update panel how to set trigger
I have a asp.net 3.5 application with the following structure:
masterpage (with update panel)
nested masterpage
content page
multiple user controls (with file uploads)
Obviously there is an issue ...
0
votes
3answers
155 views
How to add a querystring after url when asp.net button is clicked
I have a asp.net page that has a button to click. When click on it, I wish to have a querystring such as ?id=1 added after the normal url. How can I do that from server side c# code?
0
votes
0answers
30 views
Force page reload on browser back when the fragment identifier changes
Problem:
1.User clicks on this link: default.aspx#id=1.
2.The page loads, the JS from the page gets the fragment identifier (in this case id=1), and then it posts back and loads some content based ...
2
votes
1answer
120 views
UserControl Viewstate loses all values after postback
I have a user control on a page that needs to persist some state in viewstate. Whenever a postback happens the entries in the viewstate get set to null.
Page
<%@ Page Title="" Language="C#" ...
0
votes
3answers
139 views
how to use __doPostBack function in asp.net
i am trying to use __doPostBack function so i can force my page to do post pack on the page load but i am having some difficulties understanding.
when i was looking at the examples online. On ...
0
votes
1answer
157 views
How to get textbox value in ASP.NET click eventhandler
Somehow one of my stored procedures just stopped executing from aspx page. It works if I run it from SQL Server using EXEC. But when I click a button on my aspx page which assigns parameters and ...
0
votes
1answer
97 views
How can I access asp.net button's “Text” in a code behind method?
In reference to the question of mine at deleting record when it shouldn't
How can I access asp.net button's "Text" in a code behind method?
Here's how button looks like:
<asp:UpdatePanel ...
1
vote
0answers
27 views
Save Placeholder on Postback
I am creating a table dynamically on an click event of a Button
private void CreateDynamicTable()
{
PlaceHolder1.Controls.Clear();
int tblRows = Rows;
int tblCols = ...
2
votes
1answer
86 views
asp.net listbox_index changed postback is firing on every button
I have a listbox that is populating on a buttonclick and then when the user selects or changes the index on the listbox it downloads a file related to it.
The problem I have is when they go to push a ...
0
votes
1answer
61 views
Back button doesn't cause postback to a controller action in MVC
When I click the back button in IE10 or Chrome on Win7, it does not hit my break point in my MVC controller. The Network tab in IE developer's tools shows it had a 304 not modified and Fiddler doesn't ...
0
votes
0answers
74 views
Continuously update a Label from code-behind during postbacks
I am trying to add a Label to show the running total value from selections made in a RadioButtonList, CheckBoxList, and a DropDownList. How do I go about adding that to my current code?
Protected ...




