PLEASE HELP ME

I WANT TO KNOW HOW TO CALL A DOMAIN NAME FROM ANOTHER DOMAIN NAME
ie)if suppose i had a url www.john.com its has database
if i had create a website for all members and it was store in john databse
eg www.a2.com(member of john.com)

if any person click on a link i want to see www.a2.com(with all content which was store in john databse inorder to show personal details of a2)

www.a2.com dont have databse it should be call from john databse

i have to call directly by tping url www.a2.com and also from www.john.com

All page in www.a2.com is call from www.john.com application

pls help me urgent work

Recommended Answers

All 2 Replies

PLEASE HELP ME

I WANT TO KNOW HOW TO CALL A DOMAIN NAME FROM ANOTHER DOMAIN NAME
ie)if suppose i had a url www.john.com its has database
if i had create a website for all members and it was store in john databse
eg www.a2.com(member of john.com)

if any person click on a link i want to see www.a2.com(with all content which was store in john databse inorder to show personal details of a2)

www.a2.com dont have databse it should be call from john databse

i have to call directly by tping url www.a2.com and also from www.john.com

All page in www.a2.com is call from www.john.com application

pls help me urgent work

Hey ,
You can use a response.redirect to redirect you to a seperate page .


Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
Response.Redirect("http://www.msn.com/")
End Sub

Hope it helps

Or, the "web" domain can simply connect to the database on the other server. Nothing fancy, just a basic connection string.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.