Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
4answers
636 views

Action PostBackUrl Programatically using C#

Can you get the action of PostBackUrl in a page's code behind? I want to call an onclick function that does some database updates and then posts back to a different URL with values as hidden fields. ...
3
votes
3answers
5k views

PostbackUrl vs NavigateUrl

Can someone tell me the different between LinkButton.PostBackUrl and HyperLink.NavigateUrl? I've got a asp.net 2.0 application that uses both methods throughout the application and everything works ...
1
vote
0answers
97 views

Asp button with PostBackUrl validated by javascript click handler breaks other buttons

I have a master page that contains a button with a PostBackUrl. I add validation to the button using jquery and return false if the form is not valid. The button: <asp:Button ID="btnSearch" ...
1
vote
1answer
93 views

Problem with sql statement and PostBackUrl

I have an sql statement that I posted on this site, and I applied in my website that works and inserts users name and information into the database soon after the user presses the submit button. This ...
1
vote
1answer
265 views

ASP.net 4.0 Webforms Routing Postback Issue

We are using asp.net 4.0 and routing with web forms to create friendly urls. The routing is working fine except that the correct "action" value is not being assigned to the form element in the ...
1
vote
1answer
94 views

CrossPost access to data

I have a search form on a page that posts back to itself and shows the results, all works fine. I now have a requirement to put the same search form on the site home page. This needs to post back to ...
1
vote
1answer
4k views

PostbackUrl and Query String Parameter

Scratching my head about this. In the rendered HTML for the code below, the btnEdit (in the GridView) has the correct Javascript in the onclick parameter (onclick="javascript:WebForm_DoPostBack..."). ...
1
vote
6answers
3k views

Is there a way to clear query string parameters when posting back?

I have a form that sometimes gets linked to with some query string parameters. The problem is that when I post back the form, the query string parameter is still there. It's not really an issue the ...
0
votes
1answer
40 views

pass value containing ampersand to a different page

I want to go to a different URL and pass a parameter as a query string. This value contains an ampersand. I can use Response.Redirect to do this. Response.Redirect("http://www.mysite.com/?Value=" + ...
0
votes
2answers
94 views

postbackurl using get rather than post

I am developing a website using asp.net c# and I want to put a form inside the page. Now as aspx pages have the form tag I do not want to nest another form inside this as it will invalidate my html. ...
0
votes
0answers
46 views

IButtonControl And PostBackUrl

I'm trying to implement IButtonControl on a custom button control that does not derive from the normal ASP.NET button. I've got the events and properties all implemented and going from server to ...
0
votes
1answer
94 views

Cross Postback from Masterpage

I have a textbox used to search for products. This textbox is placed in the site's masterpage. However, I'm getting a null error for the frmSearch value once posted back. masterpage search: ...
0
votes
2answers
197 views

Validation Ignored with PostBackUrl or Response.Redirect Using C#

I have a form with some custom validation. There is a button on the form that should take the user to a 'confirm page' to show all the details of an order. On-Page Validation <asp:TextBox ...
0
votes
1answer
116 views

OnServerValidate Won't work with PostBackUrl in ASP.Net C#

I'm validating a form using a CustomValidator so I can colour the background of the textbox. The code behind for the CustomValidator doesn't get called when I click the form's linkbutton. However, ...
0
votes
3answers
89 views

Whats the difference between the following page transfer methods

What is the difference between the following: Server.transfer? Response.Redirect? Postbackurl? When should I decide to use which?
0
votes
2answers
281 views

PostBackUrl with query string is taking me to original root URL always

I am new to web development. I have a simple question I have the following server side code linkButton.PostBackUrl = "PageRedirect.aspx?Link=" + values[1]; When I click on the link, it takes ...
0
votes
1answer
393 views

asp:ImageButton with PostBackUrl responds after the second click

I have an asp:ImageButton with a PostBackUrl into the same button (code behind) and I have to click twice in order to fire the internal code. I need to know how can I solve this issue just with one ...
0
votes
1answer
363 views

changing the PostBackUrl in ASP.net after a file download

I have a ASP.net which allows users to select a number of inputs and dropdown lists to filter the report and to download an Excel report after pressing a button on that same form. The page can be ...
0
votes
1answer
11k views

C# LinkButton.PostBackUrl - New window without JS

Is it possible to use asp:LinkButton without JavaScript to open new windows? Currently i have workable next code, but with JS. <asp:LinkButton ID="lnkPcName" runat="server" ...
0
votes
2answers
4k views

add querystring to a postbackurl property of asp:button

I've got a textbox and a button on a form on default.aspx and in my DownloadHandler.ashx I am getting the value I need from HttpContext.Request.Form("txtURI"): <asp:TextBox ID="txtURI" ...