im having a strange problem that i can access a database thru a desktop application but not able to do that in a web application, here's da code, used in both places

VB Code:
  1. Dim ob As New System.Data.OleDb.OleDbConnection
  2.         ob.ConnectionString = "Provider=SQLOLEDB.1;Persist Security Info=False;User ID=ivcontrol;Password=ivcontrol43;Initial Catalog=InventoryControl;Data Source=202.163.115.116"
  3.         ob.Open()