postback

How to use __doPostBack()

I'm trying to create an asyncrhonous postback in asp.net using __doPostBack(), but I have no idea how to do it. I want to use vanilla javascript. Something simple like a button click can cause the __doPostBack() event to fire. I'm just trying to learn how the mechanism works. ...

ASP.net Javascript Postback

I'm learning javacript, and I'm about at the point where I want to start doing some asychronous stuff. Here is the gist of my quest: I have HTML code that looks like this: <a id='nine' onclick="SendToServer('nine');">Nine</a> I then want a way to, in Javascript, send back to the server that a#nine was clicked. function SendToServer...

AutoPostBack="true" doesn't work for DropDownList with DataSource

I have following *.aspx page <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Test.aspx.cs" Inherits="Admin_Test" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml" > <head id="Head1" runat="server"> <title>Untitled Page</title> </h...

adding series to chart control in runtime asp.net (because of postback problem)

after the postback the chart control's values is changing its design time values. even when i write page load actions in (!isPostBack) scope , the values resets. so i defined a "my series" static ArrayList and in runtime i added each series of chart to that ArrayList. And in the page load event i added each element of ArrayList to Chart ...

How to get CommandArgument value in Page_Load i.e. before OnItemCommand event

I have a Repeater that generates a list of LinkButtons. Each LinkButton has a distinct CommandArgument value. For various reasons I need to check the CommandArgument value in my Page_Load code (if Page.IsPostBack), i.e. before the OnItemCommand event where it would usually be checked. I have tried accessing the __eventtarget and __event...

Dynamically enable ASP.net button in GridView based on another control in the GridView

I have a gridview with a cheackbox and a dropdown. The checkbox, by default, is not checked. The dropdownlist, by default, is disabled. In the edit mode of the gridview, when the user clicks the checkbox I want the dropdown to become enabled. If I could do this client side that would be awesome, if not I want to do it server side WI...

When do you use If (!IsPostBack) in ASP.NET?

The more I use ASP.NET, the more if (!IsPostBack) {} seems pointless... First example: For example, I just Googled an issue, they said use this as part of the solution: if (!Page.IsPostBack) { Page.LoadComplete += new EventHandler(Page_LoadComplete); } Which does exactly as coded, LoadComplete will only fire on the first load. A...

ASP.NET Ajax CalendarExtender will not update SelectedDate value

For some reason, any CalendarExtenders on an ASP.NET site that is being worked on will not be updated. I have already checked all the obvious places (such as AutoPostBack and AutoEventHandler). The problem is that when I select a date from the Calendar and post it to the form, the TextBox that is being extended IS being updated, but the ...

Problem with POST Back

I have <asp:GridView /> control on the form and <asp:LinkButton /> when there is no any data in GridView, generated HTML of LinkButton looks like that <a href="javascript:__doPostBack('ctl00$ContentPlaceHolder1$contolPanel$ctl00$ctl00$addNew','')" id="ctl00_ContentPlaceHolder1_contolPanel_ctl00_ctl00_addNew"> <strong class="CmsButR...

Sitecore: Turning on HTML Caching blocks postback behavior

I have a sitecore page with an ASP dropdownlist, and the data on the form is populated from the selected value of the dropdown. When the selected item of the dropdownlist is changed, a postback is fired. In the postback, the new selected item is added to the querystring and the user is redirected (for linkability). I recently enabled HT...

ASP.Net ListBox values not posting changes after jQuery manipulation?

Hi everyone, I have an ASP.Net page with two ListBox components, rendered in the browser as <select> lists. I'm using jQuery to move elements from one list to another by manipulating the DOM. I then select all elements with the mouse and postback the form. That way, all the list elements are posted with the form. When I submit the ...

Adding GroupName to items in RadioButtonList

I have created a class that inherits from RadioButtonList in order to add a GroupName attribute to each list item. (why it was not there already I have no idea). This works as expected when it is rendered, but does not persist the selected items on postback. public class GroupedRadioButtonList : RadioButtonList { [Bindable(true), ...

Handling events triggered from controls programmatically added to the page?

I am programatically adding a control to an aspx page and binding a server side event to an index changed event inside the control. (It's a RadListBox from Telerik's ASP.NET controls) The problem is that on the postback triggered from the control, the event doesn't hit its eventhandler because on the postback the control isn't defined. ...

Reloading page through javascript: avoid the "Postback" warning

I'm triggering a page reload through javascript, using the following: window.location.reload(true); However, in some cases (of previous postback), the browser is giving me the following warning "To Display the webpage again, the web browser needs to resend the information you've previously submitted...". Is there any way of avoing th...

asp.net form postback or not depending on button clicked

hi everyone! I need an idea for a situation like this: There is this aspx form which contains some buttons like "save", "import", and print; on the last one clicked a window should appear providing the user with a print-friendly version. what i need is the form not to cause postback and reload in this case, while normally postback-ing w...

asp.net store object class in viewstate (or other ideas)

Hi all, I've build a class like this: private class TestResults { public bool IsAdmitted { get; set; } public bool IsDuplicate { get; set; } public bool IsVerified { get; set; } } The values of this class are set at postback by clicking a radiobutton list. Problem however is I don't know how to save this values across...

Autopostback and doPostBack conflict

I have enabled the AutoPostBack property of one of my form's textboxes, which according to w3 schools should only trigger a postback when I press enter or tab. I am also calling a __doPostBack() on pageLoad, given a user's answer to a javascript prompt. When I do that, the Request.Form['__EventTarget'] is not what I set it to be in the...

do postback then re-direct to a page

I'm trying to do a javascript postback and then re-direct to a different page but it keeps posting back to the current page Here's my code $(this).prepend('<a class="booknow2 sidelink sidelinkNew" href="javascript:__doPostBack(\'SetSess\',\'\')"><img src="../../images1/button/leftEdge.png" width="4" height="35" style="float:left; margi...

jQuery: function not working when clicking button inside <form runat="server">

With jQuery, in (document).ready I assigned a click function to all buttons of my asp.net (aspx) page. When I click a button outside , the function works properly. When clicking a button INSIDE the form, it doesn't work. Why? Here my default.aspx page: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits=...

ASP.Net MVC Submit Post Data for Survey

I'm having a hard time figuring out how to collect the data from a FormCollection when submitted for my form which collects the answers for a survey. Specifically my problem is with questions that have multiple choice options(radio buttons) and an other textbox field if the options did not apply. My survey has the following structure: ...