Questions tagged [postbackurl]
56 questions
0
votes
3 answers
code behind with postback url
I try to make postpackurl in code behind so that I can send the code but my issue is when I click the button its keep it in the same page .
my question is how I can make the postbackurl directly go to next page?

Ahmed Almahmeed
- 97
- 2
- 15
0
votes
1 answer
using postbackurl to pass variables without referencing ctl00$MainContent
I'm hoping there's a cleaner way of doing this. My source page markup has some simple inputs and a submit button:

russds
- 845
- 5
- 25
- 48
0
votes
0 answers
PostBackUrl and Form Action download php page instead of redirecting
My aspx pages react normally when it comes to using Response.Redirect(".php") or a href='.php' to external web resource. However, when it comes to using PostBackUrl = ".php" or form action=".php" they download file instead of opening it.
How can I…

Eric.B
- 1
- 1
0
votes
1 answer
I want to reply to my post back url
I had a GPT site. When users complete an offer on my offer walls, the site sends a postback request to my site so that I can credit my users. After crediting I have to reply them with '1'. I wrote Response.write("1") in my event. Everything is going…

Sailesh Babu Doppalapudi
- 1,534
- 1
- 10
- 22
0
votes
1 answer
Open frame when clicked
I have button, which should open a modal pop up with iFrame to a page.
Currently the button click opens a PostBackUrl,
I want a similar thing to happen here.
That is, I want to open the Iframe scr Page as postbackurl.

shradha
- 147
- 2
- 16
0
votes
1 answer
Asp LinkButton doesn't work on press
I want to change language with LinkButton in my project
english

Alex
- 8,908
- 28
- 103
- 157
0
votes
1 answer
postback url not working live but does in test
I've got a search page which shows a gridview. Items in the gridview are hyperlinks which create url string back to the same page - index.aspx
I've got index.asp checking for the presence of query string and deals with it just fine.
The problem i've…

andrew
- 1,184
- 3
- 19
- 28
0
votes
1 answer
Postbackurl Vs Response.Redirect (losing data)
I have a button in my aspx page, which in code behind the value of postbackurl gets set. I updated the code to add click event handler and added Response.Redirect code to redirect user to the page once the button is clicked. The only reason i ended…

sanjeev40084
- 9,227
- 18
- 67
- 99
0
votes
1 answer
User control PostBack URL Issues
In my project, I have create user control and dynamically load it in the place holder. But now I am having problem with PostBack URL issues.
I need to pass value to other page from the user control to other page.
Please see my code at below
Here is…

user998405
- 1,329
- 5
- 41
- 84
0
votes
3 answers
Dynamically changing ImageButton PostBackURL property
I am using ASP.NET 2.0. I am building a table with an ImageButton in each cell.
If the user clicks on a dropdown, I do a postback and rebuild the table with a new set of ImageButtons.
When the user clicks on an ImageButton, I show the PostBackURL…

user1315644
- 1
- 1
-1
votes
1 answer
Warning: date() expects parameter 2 to be long, string given
An error:
Warning: date() expects parameter 2 to be long
This is a postback php scripts part,
$conv_time = time();
$click_time_to_date = new DateTime(date('Y-m-d h:i:s', $mysql['click_time']));
$conv_time_to_date = new DateTime(date('Y-m-d h:i:s',…

HELPER
- 23
- 4