473,788 Members | 2,843 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

PostbackURL

HI all,

I am developing a shopping cart. The payment gateway requires certain form
fields and the the form is posted to a asp page on their site. I am using
Postbackurl. to do this. Problem is that the page moves away from my site,
which is a Dotnetnuke site, to the payment gateway site. THis page then
displays progress messages and finmally returns back to my original site
with some results.
I don't wan the pastbackurl page to move off my site, so I thought of using
an iframe, but don;t know How to set this all up.
Can some one point me in the right direction, or perhaps share an
alternative method.

Thanks
Robert

Jun 27 '08 #1
3 1856
On Apr 29, 10:50 am, "Robert Bravery" <m...@u.comwrot e:
HI all,

I am developing a shopping cart. The payment gateway requires certain form
fields and the the form is posted to a asp page on their site. I am using
Postbackurl. to do this. Problem is that the page moves away from my site,
which is a Dotnetnuke site, to the payment gateway site. THis page then
displays progress messages and finmally returns back to my original site
with some results.
I don't wan the pastbackurl page to move off my site, so I thought of using
an iframe, but don;t know How to set this all up.
Can some one point me in the right direction, or perhaps share an
alternative method.

Thanks
Robert
you could a use WebClient to post the fields to the payment getway
from your page.
Jun 27 '08 #2
HI,

I am unfamiliar with this. I did a google. Are you talking about WebClinet
Software Factory. If so, I have never used this, where can I get information
on how to use this in the manner that you suggest.

Thanks
Robert

"parez" <ps*****@gmail. comwrote in message
news:45******** *************** ***********@k37 g2000hsf.google groups.com...
On Apr 29, 10:50 am, "Robert Bravery" <m...@u.comwrot e:
> HI all,

I am developing a shopping cart. The payment gateway requires certain
form
fields and the the form is posted to a asp page on their site. I am using
Postbackurl. to do this. Problem is that the page moves away from my
site,
which is a Dotnetnuke site, to the payment gateway site. THis page then
displays progress messages and finmally returns back to my original site
with some results.
I don't wan the pastbackurl page to move off my site, so I thought of
using
an iframe, but don;t know How to set this all up.
Can some one point me in the right direction, or perhaps share an
alternative method.

Thanks
Robert

you could a use WebClient to post the fields to the payment getway
from your page.
---
avast! Antivirus: Inbound message clean.
Virus Database (VPS): 080429-1, 29/04/2008
Tested on: 30/04/2008 07:32:42 AM
avast! - copyright (c) 1988-2008 ALWIL Software.
http://www.avast.com
Jun 27 '08 #3
On Apr 30, 1:40 am, "Robert Bravery" <m...@u.comwrot e:
HI,

I am unfamiliar with this. I did a google. Are you talking about WebClinet
Software Factory. If so, I have never used this, where can I get information
on how to use this in the manner that you suggest.

Thanks
Robert

"parez" <psaw...@gmail. comwrote in message

news:45******** *************** ***********@k37 g2000hsf.google groups.com...
On Apr 29, 10:50 am, "Robert Bravery" <m...@u.comwrot e:
HI all,
I am developing a shopping cart. The payment gateway requires certain
form
fields and the the form is posted to a asp page on their site. I am using
Postbackurl. to do this. Problem is that the page moves away from my
site,
which is a Dotnetnuke site, to the payment gateway site. THis page then
displays progress messages and finmally returns back to my original site
with some results.
I don't wan the pastbackurl page to move off my site, so I thought of
using
an iframe, but don;t know How to set this all up.
Can some one point me in the right direction, or perhaps share an
alternative method.
Thanks
Robert
you could a use WebClient to post the fields to the payment getway
from your page.
---
avast! Antivirus: Inbound message clean.
Virus Database (VPS): 080429-1, 29/04/2008
Tested on: 30/04/2008 07:32:42 AM
avast! - copyright (c) 1988-2008 ALWIL Software.
http://www.avast.com
http://msdn.microsoft.com/en-us/libr...nt(VS.80).aspx

Jun 27 '08 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
8554
by: osh | last post by:
All, I am having trouble using the PostBackUrl feature in .NET 2.0. I have several User Controls that are on a MasterPage. The User Controls contain the form fields for a basic search on available homes and properties in a given area. I put these form fields into User Controls because they will be repeated in different ways throughout the site and it would be nice to only update the fields from one place to make a site wide change.
0
1259
by: wendylau81 | last post by:
We are currently using ASP.NET 2.0 to revamp one of our web applications. Let me try to briefly explain how each page is laid out... Usually within the page, there are 3 components... The header, the body, and the footer. The header and footer are user controls created by one of our developers, and contain things that all the pages in our web app should contain. This is done to avoid inconsistencies (so you only change the header once...
1
2207
by: Wendy | last post by:
I had previously posted this in inetserver.asp.components, I don't think that was the right place... anyways, here is a repost: We are currently using ASP.NET 2.0 to revamp one of our web applications. Let me try to briefly explain how each page is laid out... Usually within the page, there are 3 components... The header, the body, and the footer. The header and footer are user controls created by one of our developers, and contain...
0
1315
by: Wendy | last post by:
We are currently using ASP.NET 2.0 to revamp one of our web applications. Let me try to briefly explain how each page is laid out... Usually within the page, there are 3 components... The header, the body, and the footer. The header and footer are user controls created by one of our developers, and contain things that all the pages in our web app should contain. This is done to avoid inconsistencies (so you only change the header once...
4
5350
by: sck10 | last post by:
Hello, Can you use the PostBackUrl to post to different sites? I have a page (PostBackURL.aspx' ) on one website (same server) that has a button set to: PostBackURL="http://zone1.web.com" When the second page opened, and tried to get a hidden value on the previous page, I got the following error:
2
7560
by: xeroxero | last post by:
I have the property "PostBackUrl" set on a LinkButton set to "~/page.aspx". I tried to change this value in the Page_Load as well as the Render event to a different page based on some flow/business logic. Nothing worked. What is the best way to dynamically define PostBackUrl for a control in a C# code-behind, and what is the best way to know in the receiving page which control fired the PostBack event?
1
4776
by: Chris | last post by:
Hi, i created an ImageButton within an ItemTemplate of a datalist (in shop.aspx). There are two possibilities: 1) when the user is logged and he clicks on an image, he must be 'postbacked' to another file showing that same picture in big size and with more info.. 2) when not logged and clicking on an image, he must be 'postbacked' to the login page (log.aspx).
2
6334
by: noneya22 | last post by:
I'm using asp.net 2.0. I have a page that has a save button and a cancel button along with a text field. All controls are asp.net server controls. I have JavaScript that prompts the user if he has maninpulated data in the text field and then tries to leave the page. The purpose is to prevent the user from accidentally losing his changes. This JavaScript code that accomplishes this is based upon the code found at...
1
4426
by: joseph | last post by:
Hello Could you help i want to use postbackurl to a new window, not replace previous page. i doing something onclientscript="form1.target='_blank'" postbackurl="~/default2.aspx" is not work.
1
5155
by: Jon | last post by:
Hello all, I have a LinkButton with the PostBackUrl set, I also have an OnClick event set. For some reason, the OnClick event is only hit the second time I click the LinkButton. If I remove the PostBackUrl attribute it hits it every time. Why is that? Thanks,
0
9656
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9498
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10366
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10175
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8993
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6750
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5399
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4070
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2894
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.