0
votes
3answers
28 views
determining that a Postback opens a new page
I have a page (page1) with a LinkButton that, when clicked, will take the browser to a new page (page2).
When I click the LinkButton page1 posts back and hits the Init and Load ev …
1
vote
4answers
53 views
C# and JQuery, strange behaviour on postback
Hi,
I have an asp.net web site in which I'm trying to insert some ajax call to gain some loading time on page opening.
SCENARIO:
On page A.aspx I use JQuery $(document).ready() ev …
0
votes
1answer
19 views
asp.net forms ScriptManager __doPostback
Hi,
Why does the ScriptManager ALWAYS insert the __doPostback method in javascript, even on an empty page where no controls can cause a postback?
Thank you
0
votes
2answers
58 views
Response.Redirect to same page without Page Refresh
I need to do a response.redirect to the same page. How can I do this without the page "refreshing" or "flashing"? I can't use updatepanels because, this is a search website and I …
0
votes
0answers
41 views
ASP.NET Server Control based on RadComboBox - Postback issue
I am trying to create a custom control that extends the RadComboBox from Telerik to create a Dropdown Checkbox List with default templates. The plan is to use the control in sever …
0
votes
1answer
16 views
TreeView control - Is it possible to collapse w/o a postback?
Everything i found online so far is very confusing about TreeView. I know it has a built-in callback, that developer can populate nodes from server on demand, etc etc.
I understan …
1
vote
1answer
20 views
Javascript Postback Event
I have a user control that is supposed to write a value to a hidden field every time the consuming page posts back.
Is there any way to trap the postback event at the page level? …
1
vote
1answer
26 views
Manually calling __doPostBack(’myUpdatePanelId’,’mycustomeventarg’)
In my Javascript I am manually calling
__doPostBack('myUpdatePanelId','mycustomeventarg')
It works fine except the EventArgs in my
protected void Page_Load(object sender, Even …
0
votes
1answer
23 views
Intercept asp:LInkButton postback for client side confirmation dialog?
I want to inject a confirmation dialog to allow the user to cancel the click before the postback occurs.
What's the cleanest way?
<asp:LinkButton ID="Btn_RemoveContractPeriod" …
0
votes
2answers
152 views
Checkbox in TemplateField in Gridview loses checked on postback
I have a gridview with a template field. In that template field is a checkbox. I have a submit button outside of the gridview to assign the records that were checked. On the pos …
2
votes
2answers
132 views
.net c# postback overwrites bound textbox
I have a gridview, the contents of which are provided by accessdatasource the data displayed is dependant on a dropdown list which has a postback event
The page loads
User selec …
-1
votes
3answers
71 views
why cant i get the $_post for some values this?
Hey all,
I'm still pretty new to php so I'm a little shaky on getting the post value for things across pages.
I have an online application that I am making and so far its mostly …
0
votes
3answers
78 views
Avoid ASP.NET postbacks
How to Avoid ASP.NET postbacks?
1
vote
1answer
100 views
C#.Net - RadioButton Control adapter and postback
I have a radio button control adaptor that attempts to render the radio button control with the CSS class as part of the input tag, rather than as a surrounding span.
public class …
0
votes
2answers
36 views
Getting a dynamic controls value after Page_Load in C#?
Hello.
I have two web parts that communicate. The provider can not give a value(an RID) to the consumer until at least the provider's Page_Load event. So the consumer can not know …
