SlideShare uma empresa Scribd logo
1 de 44
ASP.NET  Concept and Practice for beginners August 13, 2009 Nicko Satria Utama, MCTS
Concept – What is ASP.NET? ASP.NET is a web application  ASP.NET runs on .NET platform ASP.NET can build using many language such as VB.NET, C#.NET, C++.NET ASP.NET can be viewed on most browser such as Internet Explorer, Firefox/Mozilla, Google Chrome and Opera August 13, 2009 Nicko Satria Utama, MCTS
Concept – What is ASP.NET? ASP.NET contains HTML as a document layout, server side controls, style sheets, client scripts and many more.  ASP.NET is stateless August 13, 2009 Nicko Satria Utama, MCTS
Practice - HTML HTML is a document layout.  Dem0 how to make a very simple HTML pages August 13, 2009 Nicko Satria Utama, MCTS
Concept – Visual Studio 2008 It is an IDE or tool helps to design, visualize, develop and deploy ASP.NET It is composed of severals elements like Menu toolbar, Standard toolbar, various tool, text editor and designer The tools appears based on project or file types  August 13, 2009 Nicko Satria Utama, MCTS
Concept – Visual Studio 2008 August 13, 2009 Nicko Satria Utama, MCTS
Requirement - Hardware Windows XP or later compatible hardware. RAM minimum 1 GB (Recommend 2 GB) Hard disk minimum 160 GB  Intel/AMD no problem at least 2 GHz or better to accelerate compiler process August 13, 2009 Nicko Satria Utama, MCTS
Requirement – Software	 Windows XP or Vista or 7. Recommend that has IIS on the edition. (XP Professional, Vista Business or greater, Win 7 Professional or greater) to try deployment of ASP.NET. Visual Studio 2008 (You can use Express edition for study), I recommend standard edition or greater for serious web development August 13, 2009 Nicko Satria Utama, MCTS
Requirement – Software (cont’)  Internet browses. I suggest you install latest Internet Explorer, Firefox/Mozilla, Google Chrome and Opera version MSDN as documentation Word Processing software (MS Word) to help documenting and creating specification August 13, 2009 Nicko Satria Utama, MCTS
Practice – ASP.NET Web Project August 13, 2009 Nicko Satria Utama, MCTS
Practice – ASP.NET Web Project - August 13, 2009 Result in browser : Nicko Satria Utama, MCTS
Practice – ASP.NET Web Project Demo to create a new web project August 13, 2009 Nicko Satria Utama, MCTS
Concept - Controls Consists of user and server controls Server controls are run and draw HTML. It is usually HTML elements such as textbox User controls are custom and reusable controls that using same techniques to use ASP.NET web pages August 13, 2009 Nicko Satria Utama, MCTS
Practice – Use Server Controls August 13, 2009 Nicko Satria Utama, MCTS
Practice – Use Server Controls August 13, 2009 Result in browser Nicko Satria Utama, MCTS
Practice – Use Server Controls Demo to use server controls and run it August 13, 2009 Nicko Satria Utama, MCTS
Concept – ASP.NET Events Every ASP.NET objects have events.  Common events on every objects : loaded You can use events to interact with user August 13, 2009 Nicko Satria Utama, MCTS
Practice – ASP.NET Events Double click the page In the Page_Load method add statement : TextBox1.Text = "Inihasil dari page load"; Run it August 13, 2009 Nicko Satria Utama, MCTS
Practice – More events Drag and drop Button from toolbox to web designer  Double click button control Inside method click, fill with these statements Textbox1.Text = “Click from Button” Run it August 13, 2009 Nicko Satria Utama, MCTS
Concept – ASP.NET Datasource ASP.NET can manipulate data from various source, eg: Database, XML, File, Objects It is useful when building serious application that can handle data. ASP.NET can access data using built in server control or make your own mechanism. August 13, 2009 Nicko Satria Utama, MCTS
Concept - Gridview It is a server control that helps to display data from datasource It is a tabular that contains header and body. Usually header is column name and body is data itself August 13, 2009 Nicko Satria Utama, MCTS
Practice – Make database and table Database can be SQL Server or Access. I recommend using SQL Server if available. Create a table of “Student” that contains columns of “no” and “name”.  Fill that tables with any data August 13, 2009 Nicko Satria Utama, MCTS
Practice – Prepare Pages for Data Drag and drop GridView from toolbox to web designer Drag and drop Datasource  that is match with your database. SQLDataSource for SQL Server and AccessDataSource for MS Access from toolbox to web designer August 13, 2009 Nicko Satria Utama, MCTS
Practice – Use GridView Run datasource wizard to get database and tables. Choose Gridviewdatasource to ID of DataSource used.  Run it August 13, 2009 Nicko Satria Utama, MCTS
Practice – Gridview with AutoFormat Select Gridview Choose Autoformat from context menu Choose format do you like  Run it August 13, 2009 Nicko Satria Utama, MCTS
Practice – Respond to Gridview Event Add textbox to Designer Add enable selection from Gridview menu Double click GridView Inside methods add statement string teks = GridView1.Rows[GridView1.SelectedIndex].Cells[2].Text; TextBox2.Text = teks; Run it  August 13, 2009 Nicko Satria Utama, MCTS
Practice – Use Dropdownlist Drag and drop dropdownlist from toolbox to designer Open choose data source menu Choose datasource you built Choose nama to display and close Run It August 13, 2009 Nicko Satria Utama, MCTS
Concept – Checkbox Useful for multiple selection Use CheckboxList if you have data source ready and Checkbox if you build your own  August 13, 2009 Nicko Satria Utama, MCTS
Concept – RadioButton Useful for single selection and flag Use RadiobuttonList if you have data source ready and RadioButton if you build your own August 13, 2009 Nicko Satria Utama, MCTS
Practice – Checkbox and RadioButton Add those controls to designers If you have datasource on it, please use their “list” version, If not just use the general Add datasource of you use the “list” version, otherwise type manually. Add group name on radiobutton Run it August 13, 2009 Nicko Satria Utama, MCTS
Concept - Image The control will display image to browser Supported format : GIF, JPEG, WMF, PNG Size is various August 13, 2009 Nicko Satria Utama, MCTS
Practice - Image Get any images from internet or offline Drag and drop image control from toolbox to designer Copy image to Visual Studio project On ImageURL, choose that image Run it August 13, 2009 Nicko Satria Utama, MCTS
Concept – Page Navigation Page navigation means moving from page to page Another page has different controls You can use Hyperlink or built your own custom navigation August 13, 2009 Nicko Satria Utama, MCTS
Concept – Hyperlink It is a control to navigate between page Since it is server control, you can change dynamically the URL August 13, 2009 Nicko Satria Utama, MCTS
Practice - Navigation Create a new ASPX page Add any controls that you like Back to default.aspx Drag and drop Hyperlink from toolbox to web designer Fill NavigateURL property with new ASPX page Run it August 13, 2009 Nicko Satria Utama, MCTS
Concept – Calendar control It is a server control that display calendar and current date from this computer It can change current date on calendar but not change computer date time value August 13, 2009 Nicko Satria Utama, MCTS
Practice - Calendar Drag and drop calendar from toolbox to designer Choose calendar formatting from AutoFormat menu Run it August 13, 2009 Nicko Satria Utama, MCTS
Concept – State Management Data is lost when navigating from page to page. Help to maintain state on web Usually use ASP.NET Session or Cookies August 13, 2009 Nicko Satria Utama, MCTS
Concept - Cookies It is a little information saved on the browser Contains of information and expiration Information stored is very limited It is gone when expire or erased.  Browser shutdown, it is always there August 13, 2009 Nicko Satria Utama, MCTS
Concept - Session It is information that store in server Contain information and have timeout/expire Information store can be huge.  It is not intended to store big data or replacement of database Browser shutdown, session is gone August 13, 2009 Nicko Satria Utama, MCTS
Practice - Session Goto default.aspx Find methods that gridview selection changed Add statement below Session["Nama"] = teks; Goto new aspx page Double click the designer so it can generate page_load methods Add statement below Response.Write(Session["Nama"]); Run it August 13, 2009 Nicko Satria Utama, MCTS
Practice - Session Select from gridview and then go to another page Shutdown browser Run again and goto your new page August 13, 2009 Nicko Satria Utama, MCTS
Reference MSDN Documentation. http://msdn.microsoft.com/library ASP.NET Quickstart http://asp.net August 13, 2009 Nicko Satria Utama, MCTS
For more information Blogs : http://nickotech2000.blogspot.com Website : http:// nickosatria.com Phone : +628175151219 This slide can get online on http://slideshare.com/nickotech2000 August 13, 2009 Nicko Satria Utama, MCTS

Mais conteúdo relacionado

Semelhante a ASP.NET Concept and Practice

Learn SAS Programming
Learn SAS ProgrammingLearn SAS Programming
Learn SAS ProgrammingSASTechies
 
Chapter 1 (asp.net over view)
Chapter 1 (asp.net over view)Chapter 1 (asp.net over view)
Chapter 1 (asp.net over view)let's go to study
 
Augustus Overview Open Source Analytics
Augustus Overview  Open Source AnalyticsAugustus Overview  Open Source Analytics
Augustus Overview Open Source Analyticsjtrussell
 
Giáo trình học Html5/Css3
Giáo trình học Html5/Css3Giáo trình học Html5/Css3
Giáo trình học Html5/Css3Ho Ngoc Tan
 
Wordpress bb-portland
Wordpress bb-portlandWordpress bb-portland
Wordpress bb-portlandAllenSnook
 
Benefits of Using ASP.NET For Web Development for Businesses In 2023
Benefits of Using ASP.NET For Web Development for Businesses In 2023Benefits of Using ASP.NET For Web Development for Businesses In 2023
Benefits of Using ASP.NET For Web Development for Businesses In 2023CMARIX TechnoLabs
 
Using GPOs to Configure and Tune Desktops
Using GPOs to Configure and Tune DesktopsUsing GPOs to Configure and Tune Desktops
Using GPOs to Configure and Tune DesktopsUnidesk Corporation
 
Making Tableau Dashboards Shareable
Making Tableau Dashboards ShareableMaking Tableau Dashboards Shareable
Making Tableau Dashboards ShareableSenturus
 
Analyzing bootsrap and foundation font-end frameworks : a comparative study
Analyzing bootsrap and foundation font-end frameworks : a comparative studyAnalyzing bootsrap and foundation font-end frameworks : a comparative study
Analyzing bootsrap and foundation font-end frameworks : a comparative studyIJECEIAES
 
Company Visitor Management System Report.docx
Company Visitor Management System Report.docxCompany Visitor Management System Report.docx
Company Visitor Management System Report.docxfantabulous2024
 
Asp.net performance
Asp.net performanceAsp.net performance
Asp.net performanceAbhishek Sur
 
Extending uBuild and uDeploy with Plugins
Extending uBuild and uDeploy with PluginsExtending uBuild and uDeploy with Plugins
Extending uBuild and uDeploy with PluginsIBM UrbanCode Products
 
ASP.NET Best Practices - Useful Tips from the Trenches
ASP.NET Best Practices - Useful Tips from the TrenchesASP.NET Best Practices - Useful Tips from the Trenches
ASP.NET Best Practices - Useful Tips from the TrenchesHabeeb Rushdan
 

Semelhante a ASP.NET Concept and Practice (20)

Sakai 3 R&D
Sakai 3 R&DSakai 3 R&D
Sakai 3 R&D
 
Learn SAS Programming
Learn SAS ProgrammingLearn SAS Programming
Learn SAS Programming
 
Why Wpf
Why WpfWhy Wpf
Why Wpf
 
Chapter 1 (asp.net over view)
Chapter 1 (asp.net over view)Chapter 1 (asp.net over view)
Chapter 1 (asp.net over view)
 
Augustus Overview Open Source Analytics
Augustus Overview  Open Source AnalyticsAugustus Overview  Open Source Analytics
Augustus Overview Open Source Analytics
 
Html5/CSS3
Html5/CSS3Html5/CSS3
Html5/CSS3
 
Giáo trình học Html5/Css3
Giáo trình học Html5/Css3Giáo trình học Html5/Css3
Giáo trình học Html5/Css3
 
Asp.net core tutorial
Asp.net core tutorialAsp.net core tutorial
Asp.net core tutorial
 
Wordpress bb-portland
Wordpress bb-portlandWordpress bb-portland
Wordpress bb-portland
 
Benefits of Using ASP.NET For Web Development for Businesses In 2023
Benefits of Using ASP.NET For Web Development for Businesses In 2023Benefits of Using ASP.NET For Web Development for Businesses In 2023
Benefits of Using ASP.NET For Web Development for Businesses In 2023
 
Flex Behavior Injection
Flex Behavior InjectionFlex Behavior Injection
Flex Behavior Injection
 
Using GPOs to Configure and Tune Desktops
Using GPOs to Configure and Tune DesktopsUsing GPOs to Configure and Tune Desktops
Using GPOs to Configure and Tune Desktops
 
Making Tableau Dashboards Shareable
Making Tableau Dashboards ShareableMaking Tableau Dashboards Shareable
Making Tableau Dashboards Shareable
 
Analyzing bootsrap and foundation font-end frameworks : a comparative study
Analyzing bootsrap and foundation font-end frameworks : a comparative studyAnalyzing bootsrap and foundation font-end frameworks : a comparative study
Analyzing bootsrap and foundation font-end frameworks : a comparative study
 
Final Presentation
Final PresentationFinal Presentation
Final Presentation
 
Lotus Domino
Lotus DominoLotus Domino
Lotus Domino
 
Company Visitor Management System Report.docx
Company Visitor Management System Report.docxCompany Visitor Management System Report.docx
Company Visitor Management System Report.docx
 
Asp.net performance
Asp.net performanceAsp.net performance
Asp.net performance
 
Extending uBuild and uDeploy with Plugins
Extending uBuild and uDeploy with PluginsExtending uBuild and uDeploy with Plugins
Extending uBuild and uDeploy with Plugins
 
ASP.NET Best Practices - Useful Tips from the Trenches
ASP.NET Best Practices - Useful Tips from the TrenchesASP.NET Best Practices - Useful Tips from the Trenches
ASP.NET Best Practices - Useful Tips from the Trenches
 

Último

CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 

Último (20)

CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 

ASP.NET Concept and Practice

  • 1. ASP.NET Concept and Practice for beginners August 13, 2009 Nicko Satria Utama, MCTS
  • 2. Concept – What is ASP.NET? ASP.NET is a web application ASP.NET runs on .NET platform ASP.NET can build using many language such as VB.NET, C#.NET, C++.NET ASP.NET can be viewed on most browser such as Internet Explorer, Firefox/Mozilla, Google Chrome and Opera August 13, 2009 Nicko Satria Utama, MCTS
  • 3. Concept – What is ASP.NET? ASP.NET contains HTML as a document layout, server side controls, style sheets, client scripts and many more. ASP.NET is stateless August 13, 2009 Nicko Satria Utama, MCTS
  • 4. Practice - HTML HTML is a document layout. Dem0 how to make a very simple HTML pages August 13, 2009 Nicko Satria Utama, MCTS
  • 5. Concept – Visual Studio 2008 It is an IDE or tool helps to design, visualize, develop and deploy ASP.NET It is composed of severals elements like Menu toolbar, Standard toolbar, various tool, text editor and designer The tools appears based on project or file types August 13, 2009 Nicko Satria Utama, MCTS
  • 6. Concept – Visual Studio 2008 August 13, 2009 Nicko Satria Utama, MCTS
  • 7. Requirement - Hardware Windows XP or later compatible hardware. RAM minimum 1 GB (Recommend 2 GB) Hard disk minimum 160 GB Intel/AMD no problem at least 2 GHz or better to accelerate compiler process August 13, 2009 Nicko Satria Utama, MCTS
  • 8. Requirement – Software Windows XP or Vista or 7. Recommend that has IIS on the edition. (XP Professional, Vista Business or greater, Win 7 Professional or greater) to try deployment of ASP.NET. Visual Studio 2008 (You can use Express edition for study), I recommend standard edition or greater for serious web development August 13, 2009 Nicko Satria Utama, MCTS
  • 9. Requirement – Software (cont’) Internet browses. I suggest you install latest Internet Explorer, Firefox/Mozilla, Google Chrome and Opera version MSDN as documentation Word Processing software (MS Word) to help documenting and creating specification August 13, 2009 Nicko Satria Utama, MCTS
  • 10. Practice – ASP.NET Web Project August 13, 2009 Nicko Satria Utama, MCTS
  • 11. Practice – ASP.NET Web Project - August 13, 2009 Result in browser : Nicko Satria Utama, MCTS
  • 12. Practice – ASP.NET Web Project Demo to create a new web project August 13, 2009 Nicko Satria Utama, MCTS
  • 13. Concept - Controls Consists of user and server controls Server controls are run and draw HTML. It is usually HTML elements such as textbox User controls are custom and reusable controls that using same techniques to use ASP.NET web pages August 13, 2009 Nicko Satria Utama, MCTS
  • 14. Practice – Use Server Controls August 13, 2009 Nicko Satria Utama, MCTS
  • 15. Practice – Use Server Controls August 13, 2009 Result in browser Nicko Satria Utama, MCTS
  • 16. Practice – Use Server Controls Demo to use server controls and run it August 13, 2009 Nicko Satria Utama, MCTS
  • 17. Concept – ASP.NET Events Every ASP.NET objects have events. Common events on every objects : loaded You can use events to interact with user August 13, 2009 Nicko Satria Utama, MCTS
  • 18. Practice – ASP.NET Events Double click the page In the Page_Load method add statement : TextBox1.Text = "Inihasil dari page load"; Run it August 13, 2009 Nicko Satria Utama, MCTS
  • 19. Practice – More events Drag and drop Button from toolbox to web designer Double click button control Inside method click, fill with these statements Textbox1.Text = “Click from Button” Run it August 13, 2009 Nicko Satria Utama, MCTS
  • 20. Concept – ASP.NET Datasource ASP.NET can manipulate data from various source, eg: Database, XML, File, Objects It is useful when building serious application that can handle data. ASP.NET can access data using built in server control or make your own mechanism. August 13, 2009 Nicko Satria Utama, MCTS
  • 21. Concept - Gridview It is a server control that helps to display data from datasource It is a tabular that contains header and body. Usually header is column name and body is data itself August 13, 2009 Nicko Satria Utama, MCTS
  • 22. Practice – Make database and table Database can be SQL Server or Access. I recommend using SQL Server if available. Create a table of “Student” that contains columns of “no” and “name”. Fill that tables with any data August 13, 2009 Nicko Satria Utama, MCTS
  • 23. Practice – Prepare Pages for Data Drag and drop GridView from toolbox to web designer Drag and drop Datasource that is match with your database. SQLDataSource for SQL Server and AccessDataSource for MS Access from toolbox to web designer August 13, 2009 Nicko Satria Utama, MCTS
  • 24. Practice – Use GridView Run datasource wizard to get database and tables. Choose Gridviewdatasource to ID of DataSource used. Run it August 13, 2009 Nicko Satria Utama, MCTS
  • 25. Practice – Gridview with AutoFormat Select Gridview Choose Autoformat from context menu Choose format do you like Run it August 13, 2009 Nicko Satria Utama, MCTS
  • 26. Practice – Respond to Gridview Event Add textbox to Designer Add enable selection from Gridview menu Double click GridView Inside methods add statement string teks = GridView1.Rows[GridView1.SelectedIndex].Cells[2].Text; TextBox2.Text = teks; Run it August 13, 2009 Nicko Satria Utama, MCTS
  • 27. Practice – Use Dropdownlist Drag and drop dropdownlist from toolbox to designer Open choose data source menu Choose datasource you built Choose nama to display and close Run It August 13, 2009 Nicko Satria Utama, MCTS
  • 28. Concept – Checkbox Useful for multiple selection Use CheckboxList if you have data source ready and Checkbox if you build your own August 13, 2009 Nicko Satria Utama, MCTS
  • 29. Concept – RadioButton Useful for single selection and flag Use RadiobuttonList if you have data source ready and RadioButton if you build your own August 13, 2009 Nicko Satria Utama, MCTS
  • 30. Practice – Checkbox and RadioButton Add those controls to designers If you have datasource on it, please use their “list” version, If not just use the general Add datasource of you use the “list” version, otherwise type manually. Add group name on radiobutton Run it August 13, 2009 Nicko Satria Utama, MCTS
  • 31. Concept - Image The control will display image to browser Supported format : GIF, JPEG, WMF, PNG Size is various August 13, 2009 Nicko Satria Utama, MCTS
  • 32. Practice - Image Get any images from internet or offline Drag and drop image control from toolbox to designer Copy image to Visual Studio project On ImageURL, choose that image Run it August 13, 2009 Nicko Satria Utama, MCTS
  • 33. Concept – Page Navigation Page navigation means moving from page to page Another page has different controls You can use Hyperlink or built your own custom navigation August 13, 2009 Nicko Satria Utama, MCTS
  • 34. Concept – Hyperlink It is a control to navigate between page Since it is server control, you can change dynamically the URL August 13, 2009 Nicko Satria Utama, MCTS
  • 35. Practice - Navigation Create a new ASPX page Add any controls that you like Back to default.aspx Drag and drop Hyperlink from toolbox to web designer Fill NavigateURL property with new ASPX page Run it August 13, 2009 Nicko Satria Utama, MCTS
  • 36. Concept – Calendar control It is a server control that display calendar and current date from this computer It can change current date on calendar but not change computer date time value August 13, 2009 Nicko Satria Utama, MCTS
  • 37. Practice - Calendar Drag and drop calendar from toolbox to designer Choose calendar formatting from AutoFormat menu Run it August 13, 2009 Nicko Satria Utama, MCTS
  • 38. Concept – State Management Data is lost when navigating from page to page. Help to maintain state on web Usually use ASP.NET Session or Cookies August 13, 2009 Nicko Satria Utama, MCTS
  • 39. Concept - Cookies It is a little information saved on the browser Contains of information and expiration Information stored is very limited It is gone when expire or erased. Browser shutdown, it is always there August 13, 2009 Nicko Satria Utama, MCTS
  • 40. Concept - Session It is information that store in server Contain information and have timeout/expire Information store can be huge. It is not intended to store big data or replacement of database Browser shutdown, session is gone August 13, 2009 Nicko Satria Utama, MCTS
  • 41. Practice - Session Goto default.aspx Find methods that gridview selection changed Add statement below Session["Nama"] = teks; Goto new aspx page Double click the designer so it can generate page_load methods Add statement below Response.Write(Session["Nama"]); Run it August 13, 2009 Nicko Satria Utama, MCTS
  • 42. Practice - Session Select from gridview and then go to another page Shutdown browser Run again and goto your new page August 13, 2009 Nicko Satria Utama, MCTS
  • 43. Reference MSDN Documentation. http://msdn.microsoft.com/library ASP.NET Quickstart http://asp.net August 13, 2009 Nicko Satria Utama, MCTS
  • 44. For more information Blogs : http://nickotech2000.blogspot.com Website : http:// nickosatria.com Phone : +628175151219 This slide can get online on http://slideshare.com/nickotech2000 August 13, 2009 Nicko Satria Utama, MCTS