Ask a Question related to ASP.NET General, Design and Development.
-
trevor oakley #1
ASP.NET Data Source - Clients/Web Server
I have solved an earlier problem which I posted here, about coding Data
Source in OleDbConnection - I am new to ASP.Net. I do not understand the
solution, I just blindly followed the book (Teach Yourself ASP.NET in 21
Days), and guessed, and it worked.
When OleDbConnection is used to connect to a database, ASP.NET appears to
expect a client source, not a Web server reference. I just coded
c:\WWWRoot\.... and it worked.
Does this mean that ASP.NET downloads a database, like HTML pages are
downloaded, and then uses the actual client? I find such a concept to be
unbelieveable, or does ASP.NET download only a database definition? In any
case it is dangerous to download anything to the client regarding a database
due to security.
I expected the Web server to handle the data query and only generated HTML,
including the data query or update message, to be downloaded to client, and
the client to have no knowledge about the database. Therefore, I find it
difficult to understand why a harddrive reference should be included
anywhere in database connection code.
Code: dbStr="c:wwwroot\...", objConnection = New
OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0; " _
& " Data Source=" & dbStr & ";")
I would be grateful for any clarification on this?
Trevor
trevor oakley Guest
-
Problems sending data to clients
Hello there, I'm having somes problems connecting to FMS behind a firewall, who's a computer running m0n0wall. The problems seems to be that FMS... -
Configure Data Source MS SQL Server
i try to add new data source and choose MS SQL Server as a driver. When i click add button, the message "Error Occured While Processing Request"... -
Data source not found after upload to server
Hello!! I am just newbie in coldfusion. I am using coldfuison MX 6.1 and dreamweaver to write my project. I have configured the ODBC conenction in... -
Exposing data to clients
Hi folks, I have a client that has a distributed access disaster that I want to move to a central ASP.NET system. I'm new to web services but is... -
WTT: NT Server w/ 10 Clients
Have Windows NT 4.0 Server with 10 Client licenses. Fully registerable. Wanted Dreamweaver/Flash/Fireworks package. Newest/Registerable only. ... -
Natty Gur #2
Re: ASP.NET Data Source - Clients/Web Server
Trevor Hi,
OleDBConnection class is part of the CLR classes and it can be used on
the SERVER side to generate HTML that will be sending to the client. So
the local path is the server local path. Neither the OLEDBConnection
will happened on the client machine nor the DB will be download to the
client.
Natty Gur, CTO
Dao2Com Ltd.
28th Baruch Hirsch st. Bnei-Brak
Israel , 51114
Phone Numbers:
Office: +972-(0)3-5786668
Fax: +972-(0)3-5703475
Mobile: +972-(0)58-888377
Know the overall picture
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Natty Gur Guest



Reply With Quote

