At my work, in another location, they have a server with data I want to query. I built a VB.net application and was able to put together a SQL query and return the info. But now I have built a website, html/css/js, and I can't figure out how to do the same thing.
I have read that firing the SQL query from javascript is not a good way to do it. Everything I am reading seems to point to using node.js.
But, I can't download and install node.js on work computers. And, I can't test at home, because the server is on an intranet that I can't access from home.
So, I am stuck. Can someone point me in the right direction.
To summarize: I want to send a request to the SQL Server and get back some data to display on this website.
Not actual vb.net code, but looks like this...
myConn = New SqlConnection("Initial Catalog=Northwind;" & _
"Data Source=localhost;Integrated Security=SSPI;")
Everything I found on the net that looked like this code, didn't work.