Click here to Skip to main content
15,920,630 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi,

How to start developing an ASP.Net application in very Professional way?


for example,

For my database queries like select,Insert,Update...etc, i can simply use it as

sqlconnection con=new sqlconnection("...ConnectionString...");
con.open();
sqlcommand cmd=new sqlcommand("---Some Queries--",con);
con.close();

But i dont need it.

I want to know, how was an Corporate applications runs these above code With full security ??

While i surf, i came to know about "data access layer"...
I need to know, how to start developing an SECURE web application????
Posted

Please visit http://www.asp.net/get-started[^]
here you will get all kinds of tutorial on asp.net application

Thanks
 
Share this answer
 
Start with this, it's enough for you.

Beginner's Walk - Web Development[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900