473,659 Members | 2,680 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Web site design

Hi guys;
new to asp web design;
I have design a simple web site that allows our client to login and
view reports we manage for them. this works fine as on our network as i
can connect fine to server that the database resides on for
authentication and such.
My question is what happens when the web site is hosted by hosting
company? I assume i will have to somehow point the web site back to our
live database on our network for authentication, so setting up this
connection is where my knowledge lets me down.

the only other soloution i can think of is moving the database to the
hosting server, this would mean i would have to constantly sinc the
live database on our system with the database on the hosting server
which would net be the best.

can yous point me in the correct direction guys
cheers

Nov 10 '06 #1
3 1493
Hi guy,

It sounds like you're using a file-based databasxe, such as Microsoft
Access, for your database. A file-based database is only available via file
system, which means that the file must reside on the local system, or on a
system in the same WorkSpace or Domain, so that is is available via file
pipes. A database server, such as Microsoft SQL Server, is, like a web
server, able to serve multiple clients simultaneously across a TCP network.

So, yes, if you have a web application hosted on a web server outside of
your local domain or Workspace, you would need to upload and download the
file to and from the web site to synchronize it with your local copy. On the
other hand, if the hosting service supports SQL Server, you could migrate
the database to SQL Server and use/integrate the database remotely from your
system.

--
HTH,

Kevin Spencer
Microsoft MVP
Ministry of Software Development
http://unclechutney.blogspot.com

If you have little, is that your lot?
"Phils" <ph********@ire sponse.co.ukwro te in message
news:11******** **************@ m7g2000cwm.goog legroups.com...
Hi guys;
new to asp web design;
I have design a simple web site that allows our client to login and
view reports we manage for them. this works fine as on our network as i
can connect fine to server that the database resides on for
authentication and such.
My question is what happens when the web site is hosted by hosting
company? I assume i will have to somehow point the web site back to our
live database on our network for authentication, so setting up this
connection is where my knowledge lets me down.

the only other soloution i can think of is moving the database to the
hosting server, this would mean i would have to constantly sinc the
live database on our system with the database on the hosting server
which would net be the best.

can yous point me in the correct direction guys
cheers

Nov 10 '06 #2

Kevin Spencer wrote:
Hi guy,

It sounds like you're using a file-based databasxe, such as Microsoft
Access, for your database. A file-based database is only available via file
system, which means that the file must reside on the local system, or on a
system in the same WorkSpace or Domain, so that is is available via file
pipes. A database server, such as Microsoft SQL Server, is, like a web
server, able to serve multiple clients simultaneously across a TCP network.

So, yes, if you have a web application hosted on a web server outside of
your local domain or Workspace, you would need to upload and download the
file to and from the web site to synchronize it with your local copy. On the
other hand, if the hosting service supports SQL Server, you could migrate
the database to SQL Server and use/integrate the database remotely from your
system.

--
HTH,

Kevin Spencer
Microsoft MVP
Ministry of Software Development
http://unclechutney.blogspot.com

If you have little, is that your lot?
"Phils" <ph********@ire sponse.co.ukwro te in message
news:11******** **************@ m7g2000cwm.goog legroups.com...
Hi guys;
new to asp web design;
I have design a simple web site that allows our client to login and
view reports we manage for them. this works fine as on our network as i
can connect fine to server that the database resides on for
authentication and such.
My question is what happens when the web site is hosted by hosting
company? I assume i will have to somehow point the web site back to our
live database on our network for authentication, so setting up this
connection is where my knowledge lets me down.

the only other soloution i can think of is moving the database to the
hosting server, this would mean i would have to constantly sinc the
live database on our system with the database on the hosting server
which would net be the best.

can yous point me in the correct direction guys
cheers

Thanks Kevin for the reply,
I should have mentioned We are actualy using SQL server 2005 for the
database. so you are saying this will support web access? if so can
you give me some topics to reseach on for connection from a web host to
our database to get this working or even a typical connectiuon string
if possible.
cheers

p

Nov 10 '06 #3
First, your SQL server has to have a public Internt IP address, or an IP
address on the same LAN or VPN as the web site. Note that security becomes a
big issue when you expose a SQL Server over the public internet. This is
certainly doable, but you must be very sharp about setting up your SQL
Server security. Using a VPN is less troublesome, if you can work this out
with your hosting service. A VPN (Virtual Private Network) is a way of
connecting to a private LAN over the WAN. I often work at my job from my
home using a VPN connection. It is also important to punch the necessary
holes in your firewall to allow traffic over the TCP port that your SQL
Server is configured to listen on.

Second, you connect to the SQL Server using a TCP connection, and the
connection string is probably much like the one you're using. There are many
examples at http://www.connectionstrings.com.

--
HTH,

Kevin Spencer
Microsoft MVP
Ministry of Software Development
http://unclechutney.blogspot.com

If you have little, is that your lot?
"Phils" <ph********@ire sponse.co.ukwro te in message
news:11******** *************@i 42g2000cwa.goog legroups.com...
>
Kevin Spencer wrote:
>Hi guy,

It sounds like you're using a file-based databasxe, such as Microsoft
Access, for your database. A file-based database is only available via
file
system, which means that the file must reside on the local system, or on
a
system in the same WorkSpace or Domain, so that is is available via file
pipes. A database server, such as Microsoft SQL Server, is, like a web
server, able to serve multiple clients simultaneously across a TCP
network.

So, yes, if you have a web application hosted on a web server outside of
your local domain or Workspace, you would need to upload and download the
file to and from the web site to synchronize it with your local copy. On
the
other hand, if the hosting service supports SQL Server, you could migrate
the database to SQL Server and use/integrate the database remotely from
your
system.

--
HTH,

Kevin Spencer
Microsoft MVP
Ministry of Software Development
http://unclechutney.blogspot.com

If you have little, is that your lot?
"Phils" <ph********@ire sponse.co.ukwro te in message
news:11******* *************** @m7g2000cwm.goo glegroups.com.. .
Hi guys;
new to asp web design;
I have design a simple web site that allows our client to login and
view reports we manage for them. this works fine as on our network as i
can connect fine to server that the database resides on for
authentication and such.
My question is what happens when the web site is hosted by hosting
company? I assume i will have to somehow point the web site back to our
live database on our network for authentication, so setting up this
connection is where my knowledge lets me down.

the only other soloution i can think of is moving the database to the
hosting server, this would mean i would have to constantly sinc the
live database on our system with the database on the hosting server
which would net be the best.

can yous point me in the correct direction guys
cheers


Thanks Kevin for the reply,
I should have mentioned We are actualy using SQL server 2005 for the
database. so you are saying this will support web access? if so can
you give me some topics to reseach on for connection from a web host to
our database to get this working or even a typical connectiuon string
if possible.
cheers

p

Nov 11 '06 #4

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

Similar topics

28
3066
by: Me | last post by:
I would like to redesign my existing site into php using classes. I am not the most experienced developer with PHP, and would like to know if anyone can give me some input on a starting point for a class library. Basically, the idea is to have as much of the content served dynamically, using a mySQL database. My catalog site has grown to over 1,100 pages, and is continuing to grow. It's getting ridiculous to keep performing manual...
0
1898
by: Jim | last post by:
This si a repost, I apologize but perhaps my original inquiry got buried under all the usenet spam... I need some help getting started with a .NET web project for a commercial site. I am new to .NET and my understanding of some (but not all) of its concepts is a little sparse. I apologize for the length of this message, but hopefully it will help someone here give me the most concise and useful information, and perhaps help others out...
21
1726
by: Litron | last post by:
Appologies, this isn't really a javascript specific question.... Just wondering what the current size standard is for web-page design... it used to be 800 x 600 pxls (which seems quite small these days). Any suggestions. Thanx in advance, Litron
64
4236
by: Dave | last post by:
A friend of mine pointed out the other day that certain elements on my web site are too small. But in most of what I publish, fonts are at default size or smaller, and my images are easy to see. I am viewing at 800x600 right now by the way, because that's what I can comfortably see. Times New Roman default pitch is what - 12px? With people increasing their screen resolutions, is it possible for "default size to ever become too small in...
25
2806
by: John Morgan | last post by:
Though I have designed and implemented a number of large reasonably well received web sites I do not consider myself a graphics designer I am now for the first time going to work with a graphics designer. I notice that in the draft design the idea will be that many 'pages' will in fact be pdf files. I suppose I exaggerate slightly but the site could turn out to be a series of 'contents'pages comprising links to pdf files which are for...
3
2447
by: vijaykokate | last post by:
Our company http://www.softnmation.com/ offers its customers a great variety of products. Everything you need can be found in this site. Web Template, CSS Template, Logo Template, Corporate Identity Package, Logo Set,Icon Set, Flash Animated Template, Flash Intro Header, Flash Site, PHP-Nuke Theme, Full Site, Stretched Web Templates and Stretched Flash Templates, ZenCart Templates ,osCommerce Templates and many more
28
3583
by: Neo Geshel | last post by:
NOTE: PAST EXPERIENCE HAS SHOWN ME THAT MANY ON USENET FAIL TO READ ARTICLES PROPERLY PRIOR TO ANSWERING. I AM LOOKING FOR VERY SPECIFIC INFORMATION, THEREFORE PLEASE READ AND UNDERSTAND THOROUGHLY BEFORE RESPONDING; OR ASK QUESTIONS TO CLARIFY. I *WILL* APPRECIATE ANY CONSTRUCTIVE REPLY. Greetings! I am in the process of creating a template for a site. The site will be *true* XHTML 1.1. That is, it will validate as XHTML 1.1 on...
2
1615
by: tatata9999 | last post by:
Currently my site is not using CSS. The thing I want to do with it is, I think, it needs a face lift, otherwise, it may look boring, target audience seems very much into visual stuff, flushy, fluffy or the site may need to look some sort of 'professional' touch. Options for its face lift?: -- hire some graphics designer to touch it up; -- playing with CSS and use that to dress it up a bit; -- find some creative student do it at little...
2
1404
by: niceashok | last post by:
hello everybody i know asp coding very well and frontpage and sql server i want to create my web site but don't know how to design first home page of site is there any readymade tool like jhoomla in PHP CMS which can create my web site . is there any web site from where i can download sample ASP web site with source code for practise. and let me know any good web site for download template/themes for my ASP site. if u know any good CMS for ASP...
0
8332
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
8746
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
8525
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
7356
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
5649
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
4175
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...
0
4335
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2750
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
1737
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.