0
votes
3answers
39 views
How to get textbox value from jQuery modal dialog after postback?
How do I get the ASP.NET text boxes updated with the value of the entered form data?
The code below is basically the modal dialog form sample from jQuery UI, but with ASP.NET text boxes.
The post back …
1
vote
2answers
38 views
Way of checking IsPostBack or IsCallBack from within a VB.NET class
I need to be able to tell from within a VB.NET class (not a user control) whether or not the current request is a PostBack and/or CallBack (AJAX). In the past I've been able to get information about …
0
votes
2answers
50 views
ViewState is not saved across postback the second time the page postsback.
I have an ASP.NET Page that contains a User control called ReportCtrl (my own control that has nothing to do with Reporting services etc.). ReportCtrl has a User control called TreeViewCtrl which …
0
votes
1answer
19 views
Jump to Anchor from CodeBehind without repost
Is there a way to append an anchor (test.aspx#23432) in the codebehind to the end of my current location in my address bar without using Response.Redirect()?
0
votes
2answers
19 views
Keeping track of refinements made to page using ASPX (Breadcrumb trail)?
I have done stuff like this before, but I want to figure out the most efficient way of doing this. There is my scenario:
A user can search our site. Depending on that search they have a number of …
0
votes
1answer
28 views
Prevent new render of CheckBoxList
I have an <asp:CheckBoxList> using RepeatLayout="Flow" in my page I dynamically assign values to. If the page is loaded the first time (!IsPostBack), the rendered version looks similar to this;
…
0
votes
1answer
20 views
How to stop postback when calling usercontrol
I have a ModalPopupExtender control and a panel which contains a iframe. The ModalPopupExtender's TargetControlID property is set to a html button control named btnFind.
When I click to find button, …
0
votes
1answer
70 views
Best way of catching a postback in javascript?
Hello. I am needing a piece of javascript to be run whenever a postback occurs. Well, actually multiple pieces. This is to be done inside a custom control, so the javascript code that should be run …
0
votes
0answers
12 views
Click & Hold Mouse On Any Button/Link & UpdatePanel AsyncPostback Turns Into Full Postback
After reading this post you may want to kick me for my stupidity. But this issue was raised by one of our client, so I have to look into this problem. So bear with me and please read the entire …
1
vote
2answers
36 views
Anatomy of a Postback
How do I determine the Params sent by a POST method?
If I have a button, and that button is clicked, what is sent to the server?
0
votes
4answers
97 views
How to detect/track postback in javascript?
How to detect/track/check postback in javascript(e.g in asp.net Page.isPostBack())?
Any suggestion?
0
votes
1answer
25 views
Inside what the TexBox value is posted back? ViewState or post back data?
In one article I was reading on ViewState, I saw a sentence saying that I should not fall into a mistake to believe that the value of a TextBox is stored in ViewState; it is stored in PostBack data.
…
0
votes
2answers
92 views
asp.net postback with jquery ajax and jquery dialog
We have a method on an asp.net page that is called on a button click. The problem is that the method take a long time to process. I've been asked to have the page call the method (or call the …
0
votes
0answers
52 views
ASP.Net Postback not working in JQuery Nyromodal popup
I have a Default.aspx page which loads a popup using JQuery Nyromodal popup.
Within the popup I have which needs to postback on clicking the button.
But when I click on the button in the popup …
0
votes
1answer
57 views
InvalidOperationException: PostBack Trigger Cannot Find a Control within the ItemTemplate of a DataList
Hi Group,
I would like to trigger a PostBack when the asp:LinkButton "addToCartButton" is clicked (see code below).
I have declared a PostBack Trigger with the asp:UpdatePanel "updPnlProductsList" …
