473,802 Members | 2,267 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 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.a sp".
"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.a sp"
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 ".

Now the records that "SearchResult.a sp" retrieves & displays - I want
to display these records in a ASP file named "ShowData.a sp" 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.asp in www.xyz.com/ShowData.asp....

Mar 22 '07 #1
3 1757
rn**@rediffmail .com wrote:
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.a sp".
"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.a sp"
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 ".

Now the records that "SearchResult.a sp" retrieves & displays - I want
to display these records in a ASP file named "ShowData.a sp" 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.asp in www.xyz.com/ShowData.asp....
Sure. Submit them via hidden fields in a form on SearchResult.as p or
pass them via the querystring.
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Mar 22 '07 #2
On Mar 22, 5:54 pm, "Bob Barrows [MVP]" <reb01...@NOyah oo.SPAMcom>
wrote:
r...@rediffmail .com wrote:
Assume that there's a website namedwww.abc.co m. 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.a sp".
"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.a sp"
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 ".
Now the records that "SearchResult.a sp" retrieves & displays - I want
to display these records in a ASP file named "ShowData.a sp" which
exists in another website namedwww.xyz.co m.
Is there any way by which I can display the records generated by
http://www.abc.com/SearchResult.aspi...m/ShowData.asp....

Sure. Submit them via hidden fields in a form on SearchResult.as p or
pass them via the querystring.
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.- Hide quoted text -

- Show quoted text -
Bob, what if the "SearchResult.a sp" page retrieves, say, 200 records &
I need to paginate the records, say, 10 records at a time & then
display those records in www.xyz.com/ShowData.asp?

How do I submit so much data from www.abc.com/ShowResult.asp to
www.xyz.com/ShowData.asp using hidden fields or querystrings?

Mar 22 '07 #3
rn**@rediffmail .com wrote:
>>Is there any way by which I can display the records generated by
http://www.abc.com/SearchResult.aspi...m/ShowData.asp....

Sure. Submit them via hidden fields in a form on SearchResult.as p or
pass them via the querystring.

Bob, what if the "SearchResult.a sp" page retrieves, say, 200 records &
I need to paginate the records, say, 10 records at a time & then
display those records in www.xyz.com/ShowData.asp?

How do I submit so much data from www.abc.com/ShowResult.asp to
www.xyz.com/ShowData.asp using hidden fields or querystrings?
You can use an xml string. Or you can pass whatever parameters that
Showdata.asp needs to retrieve the data from the database.
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Mar 22 '07 #4

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

Similar topics

10
3101
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
7834
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
1950
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
1087
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.
2
1869
by: P K | last post by:
I am using server.transfer for a website being developed in vs.net 2005 And I need to get the posted values after server.transfer. For this I set the second parameter "true" in the transfer method. Also enableViewStateMac is made false in the destination page. Still I cannot get some changed values. The scenario is such - 1. I have page 1 with a hidden variable named,"myHid" whose value is set to "Text1" 2. When a submit happens on...
1
1301
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...
4
2058
by: rn5a | last post by:
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.aspx" & the 2nd ASPX file is named "SearchResult.aspx". "SearchForm.aspx" 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.aspx" which retrieves & displays the...
0
9562
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
10536
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
10304
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
10285
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
9114
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
6838
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
4270
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
3792
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2966
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.