Click here to Skip to main content
15,900,362 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionMigrate Data Pin
cybersavvy6-Nov-13 19:22
cybersavvy6-Nov-13 19:22 
AnswerRe: Migrate Data Pin
Mycroft Holmes6-Nov-13 20:10
professionalMycroft Holmes6-Nov-13 20:10 
GeneralRe: Migrate Data Pin
cybersavvy6-Nov-13 20:29
cybersavvy6-Nov-13 20:29 
GeneralRe: Migrate Data Pin
Mycroft Holmes6-Nov-13 20:41
professionalMycroft Holmes6-Nov-13 20:41 
QuestionCan I connect to MS SQL using HTML & JavaScript? Pin
Michael-N6-Nov-13 8:12
Michael-N6-Nov-13 8:12 
AnswerRe: Can I connect to MS SQL using HTML & JavaScript? Pin
Abhinav S6-Nov-13 18:05
Abhinav S6-Nov-13 18:05 
AnswerRe: Can I connect to MS SQL using HTML & JavaScript? Pin
wikizhao7-Nov-13 22:22
wikizhao7-Nov-13 22:22 
AnswerRe: Can I connect to MS SQL using HTML & JavaScript? Pin
Peter Leow10-Nov-13 16:39
professionalPeter Leow10-Nov-13 16:39 
No, you cannot. Let me explain. A web application is unlike any client applications. There is this separation of concerns that is called n-tier architecture which consists of client tier (HTML, JavaScript) , server tier (PHP, ASP), and data tier (MSSQL, MySQL).

In a typical scenario, when you want to request information from a database, the request is usually submitted through a HTML form and forwarded to a server-side script, say login.php which in turn validates the content of your submission and if valid, this script will connect to the database and retrieve the information using SQL, and lastly, it will formulate the response in HTML format and send back to the browser for display.

Fundamentally, web applications created in ASP.NET is no different from what I describe above. However, ASP.NET uses server controls that abstracts the creation of HTML contents and the interaction between browsers and servers. In this way, you can use server controls to create web application the way that you used to work with controls in a client application without thinking about the separation of concerns.
QuestionOracle 10g connectivity issue with .net 2.0 website hosted on win 2008 server Pin
abhi17_66-Nov-13 4:20
abhi17_66-Nov-13 4:20 
QuestionImplement Custom Membership Provider in n-tier architecture Pin
Member 103823785-Nov-13 11:56
Member 103823785-Nov-13 11:56 
QuestionPage_init with variable Pin
vkEE4-Nov-13 2:30
vkEE4-Nov-13 2:30 
AnswerRe: Page_init with variable Pin
Gopi Kishan Mariyala11-Nov-13 3:52
Gopi Kishan Mariyala11-Nov-13 3:52 
QuestionThe name '###' does not exist in the current context - error Pin
miss7864-Nov-13 0:47
miss7864-Nov-13 0:47 
AnswerRe: The name '###' does not exist in the current context - error Pin
Richard Deeming4-Nov-13 1:38
mveRichard Deeming4-Nov-13 1:38 
GeneralRe: The name '###' does not exist in the current context - error Pin
miss7864-Nov-13 3:38
miss7864-Nov-13 3:38 
GeneralRe: The name '###' does not exist in the current context - error Pin
Richard Deeming4-Nov-13 4:38
mveRichard Deeming4-Nov-13 4:38 
GeneralRe: The name '###' does not exist in the current context - error Pin
miss7865-Nov-13 0:54
miss7865-Nov-13 0:54 
GeneralRe: The name '###' does not exist in the current context - error Pin
Richard Deeming5-Nov-13 1:17
mveRichard Deeming5-Nov-13 1:17 
GeneralRe: The name '###' does not exist in the current context - error Pin
miss7865-Nov-13 1:56
miss7865-Nov-13 1:56 
GeneralRe: The name '###' does not exist in the current context - error Pin
Richard Deeming5-Nov-13 2:04
mveRichard Deeming5-Nov-13 2:04 
GeneralRe: The name '###' does not exist in the current context - error Pin
miss7865-Nov-13 2:56
miss7865-Nov-13 2:56 
GeneralRe: The name '###' does not exist in the current context - error Pin
Richard Deeming5-Nov-13 3:13
mveRichard Deeming5-Nov-13 3:13 
GeneralRe: The name '###' does not exist in the current context - error Pin
miss7865-Nov-13 3:47
miss7865-Nov-13 3:47 
GeneralRe: The name '###' does not exist in the current context - error Pin
Richard Deeming5-Nov-13 4:14
mveRichard Deeming5-Nov-13 4:14 
GeneralRe: The name '###' does not exist in the current context - error Pin
miss7865-Nov-13 4:28
miss7865-Nov-13 4:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.