473,789 Members | 2,467 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Transfer Database Output To Another Website

Assume that there's a website named www.abc.com. There are 2 ASPX
files & one MS-Access database file in this site. The 1st ASPX file is
named "SearchForm.asp x" & the 2nd ASPX file is named
"SearchResult.a spx". "SearchForm.asp x" houses a Form with a select
list & 2 TextBoxes. The select list is populated from a Access
database table.

When the Form is submitted, the user is taken to "SearchResult.a spx"
which retrieves & displays the records that match the criteria that
the user selected in the select list & the text they entered in the 2
TextBoxes in "SearchForm.asp x".

Now the records that "SearchResult.a spx" retrieves & displays - I want
to display these records in a ASPX file named "ShowData.a spx" which
exists in another website named www.xyz.com.

Is there any way by which I can display the records generated by
www.abc.com/SearchResult.aspx in www.xyz.com/ShowData.aspx....

Mar 22 '07 #1
4 2056
There are couple ways, albeit, you'll have to jump through some hoops

1. publish an RSS feed of the result and consum the RSS in your
xyz.com
2. publich webservices and consume it from your xyz.com

hope that helps

Liming Xu
Jumptree Project Management
www.jumptree.com

On Mar 21, 9:43 pm, r...@rediffmail .com wrote:
Assume that there's a website namedwww.abc.co m. There are 2 ASPX
files & one MS-Access database file in this site. The 1st ASPX file is
named "SearchForm.asp x" & the 2nd ASPX file is named
"SearchResult.a spx". "SearchForm.asp x" houses a Form with a select
list & 2 TextBoxes. The select list is populated from a Access
database table.

When the Form is submitted, the user is taken to "SearchResult.a spx"
which retrieves & displays the records that match the criteria that
the user selected in the select list & the text they entered in the 2
TextBoxes in "SearchForm.asp x".

Now the records that "SearchResult.a spx" retrieves & displays - I want
to display these records in a ASPX file named "ShowData.a spx" which
exists in another website namedwww.xyz.co m.

Is there any way by which I can display the records generated bywww.abc.com/SearchResult.as pxinwww.xyz.com/ShowData.aspx.. ..

Mar 22 '07 #2
On Mar 22, 7:49 am, "Liming" <lmxudot...@gma il.comwrote:
There are couple ways, albeit, you'll have to jump through some hoops

1. publish an RSS feed of the result and consum the RSS in your
xyz.com
2. publich webservices and consume it from your xyz.com

hope that helps

Liming Xu
Jumptree Project Managementwww.j umptree.com

On Mar 21, 9:43 pm, r...@rediffmail .com wrote:
Assume that there's a website namedwww.abc.co m. There are 2 ASPX
files & one MS-Access database file in this site. The 1st ASPX file is
named "SearchForm.asp x" & the 2nd ASPX file is named
"SearchResult.a spx". "SearchForm.asp x" houses a Form with a select
list & 2 TextBoxes. The select list is populated from a Access
database table.
When the Form is submitted, the user is taken to "SearchResult.a spx"
which retrieves & displays the records that match the criteria that
the user selected in the select list & the text they entered in the 2
TextBoxes in "SearchForm.asp x".
Now the records that "SearchResult.a spx" retrieves & displays - I want
to display these records in a ASPX file named "ShowData.a spx" which
exists in another website namedwww.xyz.co m.
Is there any way by which I can display the records generated bywww.abc.com/SearchResult.as pxinwww.xyz.com/ShowData.aspx.. ..- Hide quoted text -

- Show quoted text -
But Liming, if I am not wrong, ASP.NET can maintain sessions across
web farms, isn't it? Isn't there any other way other than the 2
options you have suggested?

Mar 22 '07 #3
Well, another way I can think of is if they share the same database,
you can hold the search values in a temp table of some kind, and
retrieve values that way.

I'm not sure about sharing session across web farms will solve your
issue. Mabye if you can describe your business case a bit more in
detail, we can figure soemthing out.

PS: saw your post on aspnet forum, i'll see you there, you'll
probably get more ideas from others. Good luck.
On Mar 21, 10:19 pm, r...@rediffmail .com wrote:
On Mar 22, 7:49 am, "Liming" <lmxudot...@gma il.comwrote:
There are couple ways, albeit, you'll have to jump through some hoops
1. publish an RSS feed of the result and consum the RSS in your
xyz.com
2. publich webservices and consume it from your xyz.com
hope that helps
Liming Xu
Jumptree Project Managementwww.j umptree.com
On Mar 21, 9:43 pm, r...@rediffmail .com wrote:
Assume that there's a website namedwww.abc.co m. There are 2 ASPX
files & one MS-Access database file in this site. The 1st ASPX file is
named "SearchForm.asp x" & the 2nd ASPX file is named
"SearchResult.a spx". "SearchForm.asp x" houses a Form with a select
list & 2 TextBoxes. The select list is populated from a Access
database table.
When the Form is submitted, the user is taken to "SearchResult.a spx"
which retrieves & displays the records that match the criteria that
the user selected in the select list & the text they entered in the 2
TextBoxes in "SearchForm.asp x".
Now the records that "SearchResult.a spx" retrieves & displays - I want
to display these records in a ASPX file named "ShowData.a spx" which
exists in another website namedwww.xyz.co m.
Is there any way by which I can display the records generated bywww.abc.com/SearchResult.as pxinwww.xyz.com/ShowData.aspx.. ..-Hide quoted text -
- Show quoted text -

But Liming, if I am not wrong, ASP.NET can maintain sessions across
web farms, isn't it? Isn't there any other way other than the 2
options you have suggested?

Mar 22 '07 #4
On Mar 22, 8:45 am, "Liming" <lmxudot...@gma il.comwrote:
Well, another way I can think of is if they share the same database,
you can hold the search values in a temp table of some kind, and
retrieve values that way.

I'm not sure about sharing session across web farms will solve your
issue. Mabye if you can describe your business case a bit more in
detail, we can figure soemthing out.

PS: saw your post on aspnet forum, i'll see you there, you'll
probably get more ideas from others. Good luck.

On Mar 21, 10:19 pm, r...@rediffmail .com wrote:
On Mar 22, 7:49 am, "Liming" <lmxudot...@gma il.comwrote:
There are couple ways, albeit, you'll have to jump through some hoops
1. publish an RSS feed of the result and consum the RSS in your
xyz.com
2. publich webservices and consume it from your xyz.com
hope that helps
Liming Xu
Jumptree Project Managementwww.j umptree.com
On Mar 21, 9:43 pm, r...@rediffmail .com wrote:
Assume that there's a website namedwww.abc.co m. There are 2 ASPX
files & one MS-Access database file in this site. The 1st ASPX file is
named "SearchForm.asp x" & the 2nd ASPX file is named
"SearchResult.a spx". "SearchForm.asp x" houses a Form with a select
list & 2 TextBoxes. The select list is populated from a Access
database table.
When the Form is submitted, the user is taken to "SearchResult.a spx"
which retrieves & displays the records that match the criteria that
the user selected in the select list & the text they entered in the 2
TextBoxes in "SearchForm.asp x".
Now the records that "SearchResult.a spx" retrieves & displays - I want
to display these records in a ASPX file named "ShowData.a spx" which
exists in another website namedwww.xyz.co m.
Is there any way by which I can display the records generated bywww.abc.com/SearchResult.as pxinwww.xyz.com/ShowData.aspx.. ..-Hidequoted text -
- Show quoted text -
But Liming, if I am not wrong, ASP.NET can maintain sessions across
web farms, isn't it? Isn't there any other way other than the 2
options you have suggested?- Hide quoted text -

- Show quoted text -
No, Liming, there's absoultely no question of sharing the database.

Actually this is what I want - I own a website www.abc.com. All the
pages residing in this site are owned by me. The other website www.xyz.com
is not mine. Users visit www.abc.com/SearchForm.aspx & after entering
values for the different form fields, submits the Form & the user is
taken to www.abc.com/SearchResult.aspx. SearchResult.as px retrieves &
displays the records from the database.

I want to transfer the contents of www.abc.com/SearchResult.aspz to
www.xyz.com/ShowData.aspx.

Mar 22 '07 #5

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

Similar topics

10
3100
by: jason | last post by:
Is it possible to transfer a dynamic, asp site built on top of an Access database onto a cd for demonstration purposes? If not, I would appreciate some alternatives I could pursue.... Thanks Jason
1
2543
by: midwesthills | last post by:
How can I transfer the schema of a database from one SQL Server app to another? I've used MySQL in the past and all I had to do is create a ..sql file with the DDL statements for the database, then import that file in the other db. Can I do the same kind of thing with SQL Server 2000? If so, how? Also, is there a way to transfer the schema and data? Thanks in advance for the help!!!
1
1930
by: Rolan | last post by:
This is just a general question (Access 97). For exporting text from an Access database to another one, what would be the advantages/disadvantages of the two output/transfer methods? Is one more reliable/consistent than the other? If they are comparable, what is the reason for having two separate methods? Any opinions will be appreciated. Thanks.
5
7829
by: Julien C. | last post by:
Hi all, I have an "EditeItem.aspx" page which lets me edit properties of an "Item". In the OnClick() event of my Save button, I do save Item changes to the database and then I redirect the user to the Item page "ViewItem.aspx" with a simple : Server.Transfer("ViewItem.aspx"); I'd like to pass another HTTP parameter so that in the "ViewItem.aspx" page,
15
1948
by: dee | last post by:
Hi, I'm curious why MS decided to have Transfer hide the target page's url invisible? Any guesses ? Thanks. Dee.
5
6437
by: aure_bobo | last post by:
Hi all, I'm currently developing a system with several webapps in ASP.NET/C#. One of my website is used to login user : I will call this website Webapp1. Depending on the user attributes, I will send the user to an another website (let's Webapp2 in my example), where I would like to login automatically the user with the credentials entered in WebApp1.
0
1085
by: aure_bobo | last post by:
Hi all, I'm currently developing a system with several webapps in ASP.NET/C#. One of my website is used to login user : I will call this website Webapp1. Depending on the user attributes, I will send the user to an another website (let's Webapp2 in my example), where I would like to login automatically the user with the credentials entered in WebApp1.
1
1300
by: ads | last post by:
how do i transfer database objects such as tables and sp to a database file in just clicks of a mouse? Originally we are using sql server 2000 as our data storage for a website but since the website needs to be installable,i decided to make a database file as the storage which will automatically be included in the installer package.Now how do i transfer database objects to that database file?What i can only see are facilities such as add...
3
1757
by: rn5a | last post by:
Assume that there's a website named www.abc.com. There are 2 ASP files & one MS-Access database file in this site. The 1st ASP file is named "SearchForm.asp" & the 2nd ASP file is named "SearchResult.asp". "SearchForm.asp" houses a Form with a select list & 2 TextBoxes. The select list is populated from a MS-Access database table. When the Form is submitted, the user is taken to "SearchResult.asp" which retrieves & displays the records...
0
9506
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
10404
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
10193
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...
1
10136
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9016
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...
1
7525
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6761
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();...
1
4089
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
2
3695
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.