Why use .aspx??
-
I am relatively new to web development with experience in PHP and html, but i have no clue what the reasoning is behind using ASP.NET for web development. I have searched but no luck in finding the main reasoning for this. can any one explain and possibly give me a demo to see why as i have been ask to take over management of a ASP.NET with no idea on how to go about it. Thank for any help in advance.
-
I am relatively new to web development with experience in PHP and html, but i have no clue what the reasoning is behind using ASP.NET for web development. I have searched but no luck in finding the main reasoning for this. can any one explain and possibly give me a demo to see why as i have been ask to take over management of a ASP.NET with no idea on how to go about it. Thank for any help in advance.
It allows you to run functional code on the server to do things like read data from databases, send emails etc, and do the things that make your site "work" and make it data-driven. One of the advantages of the likes of aspx over php is that the code is compiled into a dll rather than interpreted each time the page runs like with PHP. "Classic ASP" works the same way that PHP does and Microsoft retired that a decade ago.
-
I am relatively new to web development with experience in PHP and html, but i have no clue what the reasoning is behind using ASP.NET for web development. I have searched but no luck in finding the main reasoning for this. can any one explain and possibly give me a demo to see why as i have been ask to take over management of a ASP.NET with no idea on how to go about it. Thank for any help in advance.
1. For database communication 2. Unlike php, classic ASP, .Net has its own environment instead of completely replying on system resources 3. Authentication, autherization modules are available. 4. Custom http handler can be created to rewrite the default behaviour 5. Security, 6. robustness, 7. Integration with other technologies like SharePoint, CRM, SAP,etc 8. and so on....
Krishna Murthy G
-
It allows you to run functional code on the server to do things like read data from databases, send emails etc, and do the things that make your site "work" and make it data-driven. One of the advantages of the likes of aspx over php is that the code is compiled into a dll rather than interpreted each time the page runs like with PHP. "Classic ASP" works the same way that PHP does and Microsoft retired that a decade ago.
+1, you're correct in all of your conclusions.
The shit I complain about It's like there ain't a cloud in the sky and it's raining out - Eminem ~! Firewall !~
-
I am relatively new to web development with experience in PHP and html, but i have no clue what the reasoning is behind using ASP.NET for web development. I have searched but no luck in finding the main reasoning for this. can any one explain and possibly give me a demo to see why as i have been ask to take over management of a ASP.NET with no idea on how to go about it. Thank for any help in advance.
For me, the answer is because I am a Microsoft developer. Since I already know C# I can learn ASP.Net very quickly. Or I can do SharePoint, or any other Microsoft technology. For me, that's the biggest reason to use it.
There are only 10 types of people in the world, those who understand binary and those who don't.