Topic profile page for Postback.
This page has aggregated data from forum posts, threads, listings, online discussions, newsgroups, messageboards, and other online sources which contain user generated content for the term: Postback.
Topic "Postback" was discussed 4,703 times on 191 sites in last 3 months
Started 5 days, 13 hours ago (2009-11-04 09:21:00)
by Fu Manchu
Hi guys, I don't know which way to go with this i think ive exhausted all efforts. My usercontrol display information but when i click update a full page postback occurs and i lose everything, my control disappears! I have an extremely large amount of data to display to the users, so using exsiting controls like a gridview is just silly. I've opted for a usercontrol that displays a set of ...
Started 6 days, 23 hours ago (2009-11-02 23:12:00)
by brin351
Can this be done? In a grid I put a dropdownlist with autopostback=true the items where just static (1,2,3-10). In the postback event I need the selected value and a rowindex or other value to know which row/record the dropdown is in. I wired up an event that handled the postback but couldn't even get the dropdown ID to find the selected value let alone the row...
Started 1 week, 3 days ago (2009-10-30 20:18:25)
by SaphuA
Hello, I am loading and adding a UserControl using the LoadControl method. However, when the loaded control makes a postback it is somehow removed. Why is this happening and how can I fix this? Here's the method that loads the control after a certain action. It clears a panel and then adds the loaded control to it. public void LoadEditor(string path) { IEditor control = null;...
Started 1 week, 3 days ago (2009-10-30 12:57:00)
by Brian Cogswell
I upgraded to 4.9.5 and was testing out the site to make sure everything worked fine. I noticed that I had an issue with a Java Postback when I hit cancel on one of the screens. Thinking it was related to the upgrade, I restored back and had the same issue in 4.9.3. Since I was very early in my site development I decided to install a fresh version of 4.9.5 with a new database. I tested the...
Started 1 week, 3 days ago (2009-10-30 12:18:14)
by Isix
Hi, I want to use a TabContainer configured with a postback on a tab-change. if a change the active tab, the new tab is shown immediately with the old data. After that, the postback is running. Then, the new data are appearing. The problem is the flickering effect. The tab changes, old data are shown, than a new load with the new data. I want to disable the tabchange by javascript. I only ...
Started 1 week, 3 days ago (2009-10-30 02:49:56)
by steschu
Hi, I have a CollapsiblePanelExtender and below a GridView. I click the expand Button and the Panel appears. When a press a PostBack button on the page, either one in the Panel or e.g. one of the Command-Buttons in the GridView, the Panel is cut off some pixels at the bottom, causing the inlayed Textbox not to be completely displayed. Source-Code before and after the postback are identical, so ...
Started 1 week, 5 days ago (2009-10-28 15:23:41)
by celoftis
Using VS2005, VB.NET code behind, My site uses Master page with two ContentPlaceHolders (CPH). On the content page, in one CPH I have a hidden button that want to be able to postback using __doPostBack. In the other CPH I am building a report using a repeater control. Inside the repeater I have a Panel that used can click on to trigger some server side event. During the ItemDataBound event of ...
Started 1 week, 5 days ago (2009-10-28 14:46:24)
by ds12will
Hello after an upgrade to 2.0, I've been recieving the Invalid Postback error. I see that clientscript.registerforeventvalidation is a way to fix the issue without setting eventvalidation to false. My question is, what values are needed to be registered? I found a previous discussion on here about it but that has seemed to be locked from any replies as it's 13 pages long. Do all controls ...
Started 6 days, 7 hours ago (2009-11-03 14:54:00)
by asifakhtar
Hi Every 1, I have a Create/Delete Users and Roles aspx form with C#. I want the form to validate whether the user had any opened tickets in the past before deleting that user. If the user has any opened tickets then the deletion is not permitted. I want client side validation for this purpose without postback. Just to update you on this, my form will get the user opened tickets ...
Started 6 days ago (2009-11-03 22:16:00)
by ssystems
Fair enough. Either way the implementation should be just similar to what I posted earlier. Code: private Boolean _MyLockedToken; protected Boolean MyLockedToken { get { if(_MyLockedToken == null) { try { _MyLockedToken = (Boolean) Session[SESSION_KEY]; } catch(Exception exc) {...
Started 3 days, 10 hours ago (2009-11-06 12:09:00)
by ssystems
I have a page that have multiple user web controls in it. On one of the controls I have a datalist wrapped in an update panel. The items in the datalist is another control wherein I have a delegate. My issue is on the first firing of the event I got a full page postback then the next clicks don't. I want to eliminate the full page postback as I have a reset on my Page_Load (!IsPostBack). Using ...
Started 1 week ago (2009-11-02 16:04:00)
by AlexClifford
Hi, I have a search box that I want to be able to be used by clicking the Enter key instead of having to press the Go button to search. At the moment this works on some pages, but not the home page. The home page just does a postback when I press the Enter key while the top search box has focus. Here is the code for the page it works on ok. HTML Code: HCC ...
Started 1 week, 1 day ago (2009-11-01 17:08:43)
by wave00
Hello to all, I've created a Page where the user can manage your own photo. To present the Photo Collection i've used a DataList Control inside an UpdatePanel for avoid a postback action; the code is below:...
Started 2 days, 1 hour ago (2009-11-07 21:19:00)
by akpaga
i have two dropdowns which are populated from two different sql datadpurces sqlcustomer and sqlpurchases sql purchase has a parameter @customerid whose value is to be got from ddl customer dropdonw value . I want this to be done through javascript instead of postback since i have these dropdowsn in a div which is in hidden on page load. coding in asp.net c# thanks in advance
Started 4 days, 14 hours ago (2009-11-05 08:00:32)
by will1968
I tried to implemented the Default redirect rule but the default.aspx (in the root folder of my site) page seem to postback onto itself when i click on an asp button or link button. I don't have a problem with a standard href link which successfully allows me to navigate to a new page. This is what I have for the url rewrite in the webconfig..... taken from http://blogs.msdn.com/...
Started 6 days, 19 hours ago (2009-11-03 03:11:00)
by autessa
Hi, not sure if this is the correct forum for my problem but i hope someone could still help... I have a page where i close a window after postback. It works fine in IE6, but I encountered 'Object doesn't support this property or method' error in IE8. The error occurs in the Sys$_ScriptLoader$_loadScriptsInternal function in the AjaxControlToolKit framework. I'm using RadWindow and ...
Started 2 days, 7 hours ago (2009-11-07 14:54:00)
by akpaga
i have two dropdowns which are populated from two different sql datadpurces sqlcustomer and sqlpurchases sql purchase has a parameter @customerid whose value is to be got from ddl customer dropdonw value . I want this to be done through javascript instead of postback since i have these dropdowsn in a div which is in hidden on page load. thanks in advance
Started 4 days, 8 hours ago (2009-11-05 14:21:00)
by adiiliuta
Resume Maker Professional 15.0 PostPosted: Mon Mar 30, 2009 2:03 pm Post subject: Resume Maker Professional 15.0 Reply with quote Report postBack to top Resume Maker Professional 15.0 Image Is your resume helping you move forward or holding you back? Advance your career and never miss another career opportunity! ResumeMaker® is packed with powerful features to ...