Click here to Skip to main content
15,890,399 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I mean to say that when I want online software so I have to buy a ip for a server computer where my database is installed.
I want to ask that if I buy a ip and then I make a server and installed a databse then client opens his software and work directly.
Or do they have to do any other thing mean make any connection to particular computer in the network?

I am student of bachelor of computer science. I am working on a software. I am using the computer language vb.net. I am working on software that is Accounts Software there a database and some forms.
There is a database which is made in sql server 2000 and there are many tables.
My question is that I make that software for a Client and database will be attached in my computer.
Both are using DSL internet, me and Client too.
I want to that when my Client open that software and then he works in the software then he saves record so it is saved in my computer database.
Please tell me complete way of that.
I saw software same as there is a bat format file I have to run first it then it successful then I can open software.
There is bellow my connection which I am using in my software. Please tell me about it please.

Public Function connection() As SqlConnection
  con = New SqlConnection("server=(local);database=shaan;integrated security=true")
  Return con
End Function


This is just use when software is running in my own computer but what will be connection when my Client will use software and he is also using DSL internet connection so how can create connection between server and Client

Client send request to sever
Posted
Updated 15-Nov-10 20:10pm
v3

1 solution

If you are developing a web application (as the tag suggest ASP.Net), then you install your web application in your server. Now purchase a static IP address from your internet connection provider. And then from your client computer type http://000.000.000.000/YourSite in your browser. In this case your application will run from your server itself and as you have your database in your server too so you don’t need to worry about database connection. server=(local) will also connect your database.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900