VB.net VC.net Asp.net PHP?

M noman M

New member
hey i have a problem want ur serious help


i hav developed an application in VB.net 2008 this appliction is like an online database .... i tested that application on LAN and it works great but hav some problems that when i change the folder of database the dosen't work or if a client hav exe he can't change data from database as he dnt hav database wid it ..... i want a gernal code that my database is on a web server that could be linked with the exe ... if any use come and want to update database can do easily from anywhere in the world ...........

another question is that is there any option that we can execute an exe file on a web page widout downloading it and the exe do da same work as it do on windows .... actully i want to put my database project on a website so that i could be oprated on a web and could aslo update databse ,,,, examples of such type prjects are Ebuddy .... website online messengers like yahoo msn google etc
i want to host my database ..... but how could i give link of databse to my exe file that what ever the changes are made in exe must be update on database on a webhost ......


any example of coding ???
can u give me link of tutorials for this or do u hav any project example
actully i didnt understood i want a video tutorial

plz mail me at [email protected]


gardner can i hav ur email
 
Trying to translate this made my head hurt. It's not real clear what you are asking.

If you want your database online then you have to have a hosting service to host the file. Your program would point to that host for the database location.

You can not just put an exe file on a web server and let people run it. You can however convert your application over to an ASP.NET application and that can be run from a web server providing it is an IIS web server. It will not work reliably on a UNIX based server.

If I miss understood your question forgive me but you were very unclear.

Edit:
Sample connection string for remote access:
con.ConnectionString = "Provider=MS Remote;" & _
"Remote Server=http://192.168.54.106;" & _ <---- URL/IP goes here
"Remote Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=C:\software\software.mdb;Persist Security Info=False"

If you are using the Express Edition of Visual Basic this will NOT work. VBEE is limited to local database access only.
 
Back
Top