Download presentation
Presentation is loading. Please wait.
Published byMelvyn Wilkerson Modified over 9 years ago
1
Introduction to.NET
2
Getting Started Isn’t.NET development expensive? If.NET was important then we would learn about it at University.NET is proprietary and goes against industry standards.NET Presentation :: Getting Started Common Questions:
3
My Project Task: To create a personal blog Why? To act as a resume to potential employers, to keep a record of my developments and to gain a reputation as a community orientated developer..NET Presentation :: Getting Started http://www.kgbnetworks.com/
4
The MSDN Academic Alliance program gives students access to the latest Microsoft software. Current products that are freely available to students are Windows XP Pro, Windows Server 2003, Visio Professional, Project Professional and Visual Studio.NET 2003 Academic. MSDN Connection is a free program which gives students access to a number of services. This includes free ASP.NET hosting, a bi-monthly MSDN Australia Magazine, 20% off MSPress books and discounts on training and certification..NET Presentation :: Student Resources
5
Although you can access the full version of Visual Studio through the MSDNAA program, you can also download the Express Editions for free from the Microsoft website The Visual Studio Express Edition website is http://lab.msdn.microsoft.com/express/ The versions available for download are: Visual Web Developer 2005 Express Edition Visual Basic 2005 Express Edition Visual C# 2005 Express Edition Visual C++ Express Edition SQL Server 2005 Express Edition Visual J# Express Edition.NET Presentation :: Student Resources
6
.NET Presentation :: VS.NET Express Edition 2005
7
Isn’t.NET development expensive? Cost Summary:.NET Presentation :: Development ProductPrice Windows Server 2003$0 Visual Studio Express Edition $0 Total$0
8
If.NET was important then we would learn about it at University The following Universities offer.NET based courses: The University of Melbourne – 2 courses The University of Swinburne – 13 courses RMIT – 9 courses Charles Sturt University – 12 courses University of Technology Sydney – 4 courses Queensland University of Technology – 10 courses.NET Presentation :: Development
9
But I like my language better! That is ok too! Microsoft has made sure the.NET platform supports a number of different languages: Microsoft Languages: Visual Basic, C#, J# Other Languages: Java, Perl, Python, C++, Jscript, Pascal, Small Talk, APL, Cobol, Eiffel, Fortran and Forth.NET Presentation :: Other Languages These are referred to as Common Language Specification (CLS) compatible programming languages
10
I know Java, but where do I start with.NET?.NET Presentation :: Other Languages The Java to.NET migration workshop is a good place to start Located at http://msdn.microsoft.com/vstudio/java/migrate /workshop/ This workshop has numerous examples with full source code as well as written and video demos. Examples include: Automatic Java -> J#.NET migration JSP -> ASP.NET migration Java ->.NET user interface migration
11
Starting with ASP.NET Example code to connect to a MySQL Database:.NET Presentation :: KGB Networks Development using(OdbcConnection con = new OdbcConnection(ConnStr)) using(OdbcCommand cmd = new OdbcCommand("SELECT * FROM news", con)) ASP.NET Code: <?php mysql_select_db("kgbnetworks",$db); $result = mysql_query("SELECT * FROM news",$db); ?> PHP Code:
12
Performance Comparison I was curious to see if ASP.NET performed any better even with my tiny example:.NET Presentation :: KGB Networks Development PHP: http://www.kgbnetworks.com/index.php Page Generation Time: 0.0188382 Seconds ASP: http://www.kgbnetworks.com/Default.aspx Page Generation Time: 0.0156286 Seconds
13
That’s great, but… Let’s see what.NET is REALLY all about..NET heavily utilises web services Web Services are based on W3C open standards (HTTP, XML and SOAP) Any application that supports these open standards can communicate with a.NET application locally or remotely.NET Presentation ::.NET Web Services
14
Creating a Web Service It is as simple as:.NET Presentation ::.NET Web Services Using Visual Studio 2005 Express Edition
15
.NET Presentation ::.NET Web Services
16
Response The browser shows the response given by your web service in XML format: Advantages: Test your web service locally before deploying it Allows external developers to play with your web service without having to write a single line of code Useful for testing and isolating bugs in your system..NET Presentation ::.NET Web Services
17
Your next step Download Visual Studio Express Edition http://lab.msdn.microsoft.com/express/ Find or create some web services to interact with (Plenty of good examples at www.xmethods.net) Write some code that consumes or serves content via SOAP and XML Publish it on a web site, as an application or both!.NET Presentation :: Conclusion
18
Thank you!
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.