Creating Session By huda AlSuwailem.

Slides:



Advertisements
Similar presentations
1 After completing this lesson, you will be able to: Create a new presentation using a design template. Enter text in the Slide pane. Create a new slide.
Advertisements

MS Access 2003 Tutorial By: Juan GUANTENG!!! Y7. Step 1 Launch the Microsoft Access 2003 program. This can be done by clicking an icon on the desktop.
Using Eclipse. Getting Started There are three ways to create a Java project: 1:Select File > New > Project, 2 Select the arrow of the button in the upper.
 Share assignments and files  Student and parent home access  Announcements  Classroom information.
Microsoft Outlook Training August Agenda Calendar functions –Appointments –Reminders –Notes –Tasks –Layout changes Functions –Organization.
Using the Photo Album in PowerPoint 2003 Multimedia Services at The Citadel Updated 6/18/07.
Chapter 6 Multiform Projects Copyright © 2011 by The McGraw-Hill Companies, Inc. All Rights Reserved. McGraw-Hill.
Putting Your PowerPoint into WebCT. To put your PowerPoint online Create an appropriate folder Upload the PowerPoint file to that folder Create a link.
Student iDrive Access ESU Website Server Storage Space.
Beginning Programming with the Visual Studio.NET Environment.
Microsoft Visual Basic 2005 CHAPTER 8 Using Procedures and Exception Handling.
Web Design Using HTML Codes. WHAT DO I NEED TO BEGIN DESIGNING A HOME PAGE? 1.YOU NEED A FOLDER (also called a DIRECTORY) You should set up a folder or.
Microsoft Visual Basic 2012 Using Procedures and Exception Handling CHAPTER SEVEN.
CHAPTER 9 Introducing Microsoft Office Learning Objectives Start Office programs and explore common elements Use the Ribbon Work with files Use.
1 1 Lab1 Ismail M. Romi – IT Dept, PPU, Visual Basic 2005 Programming Tour.
Microsoft Visual Basic 2005 ENRICHMENT CHAPTER Visual Studio Tools for Office.
Microsoft Visual Basic 2012 CHAPTER THREE Program Design and Coding.
MS-Word XP Lesson 9. Mail Merge The Mail Merge feature combines a list of data, typically name and address that is contained in one file with a document.
Project Deployment IT [211 CAP] How to convert your project to a full application.
1 CS 3870/CS 5870 Note04 Session Variables and Post Back.
Global.asax file. Agenda What is Global.asax file How to add the Global.asax file What are the default events available Explanation to Application_Level.
McGraw-Hill © 2009 The McGraw-Hill Companies, Inc. All rights reserved. Chapter 6 Multiform Projects.
Click your mouse to continue. Creating a New Mail Merge Document When you need to create a form letter but do not have an existing main document, you can.
Using Microsoft Visual Studio 2005 Original by Suma Rao Revised by John G. McMahon ( 9/6/2008 )
Using Microsoft Visual Studio C++ Express 2005 Name: Dr Ju Wang Ashwin Belle Course Resource:
Visual Basic.NET BASICS Lesson 1 A First Look at Microsoft Visual Basic.NET.
How to Create a PowerPoint Presentation. Starting PowerPoint Click 4 th grade folder Find power point in list Highlight and Click on.
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 8 Debugging, Creating Executable Files, and Distributing a Windows Application.
Introduction to Web Services. Examples Using a Web Service Creating a new Web Service.
Microsoft Visual Basic 2005 BASICS Lesson 1 A First Look at Microsoft Visual Basic.
Working With Mail Merge Software Applications. Mail Merge 1.Choose Tools on the Menu Bar 2.Choose Mail Merge (The Mail Merge Helper dialogue box appears)
Making a Logbook Entry. Go to Click on Sign In.
1 Working with ASP.NET Master Pages By huda AlSuwailem Reference: Mastering Microsoft Visual Web Developer 2005 Express Edition by John Paul Mueller.
Slide 1 Using Menu Bar & Common Dialog Boxes. Slide 2 Setting Up the Main Items v First open the form on which you want the menu located v Then start.
Insert a voice comment in Word 2007 Before you can add a voice comment for the first time, you need to add the Insert Voice command to the Quick Access.
1 After completing this lesson, you will be able to: Get around the Internet with your browser. Connect to the Internet. Print Web pages. Save Web pages.
6-1 aslkjdhfalskhjfgalsdkfhalskdhjfglaskdhjflaskdhjfglaksjdhflakshflaksdhjfglaksjhflaksjhf.
Animations Sampler Click the Animations tab, then choose Custom Animation.
Data-information stored in files on the disks and CDs in your computer system Why should we save a file when we create it on the computer?
Creating New Forms Projects can appear more professional when using different windows for different types of information. Select Add Windows Form from.
XP Tutorial 3 New Perspectives on Microsoft Windows XP 1 Microsoft Windows XP Organizing Files with Windows Explorer Tutorial 3.
Customizing Menus and Toolbars CHAPTER 12 Customizing Menus and Toolbars.
Personal Planning System The Merging a New Plan Enterprise Edition.
My Stuff & More! How to personalize your OSLIS 2.0 “dashboard” and add files to your personal space.
Murach's ASP.NET 4.5/C#, C2© 2013, Mike Murach & Associates, Inc.Slide 1.
DEVRY CIS 170 C I L AB 1 OF 7 G ETTING S TARTED Check this A+ tutorial guideline at
Development of Internet Application 1501CT - Sara Almudauh
Creating Data Base & Sql Data Source
Session Variables and Post Back
Mail Merge And Macros in MS WORD
Word 2010 Insert Picture from a File
Merging Word Documents
Using Procedures and Exception Handling
How to fix Avast Antivirus Error  First of all, you need to click the “Start” button.  In the search box, type "command."  Hold down the CTRL-Shift.
File Upload.
HOW TO CREATE A CLASS Steps:
Accessing Databases with ADO.NET, Handling Exceptions, and Printing
Creating Data Base & Sql Data Source
You can please some of the people some of the time…
Macro.
Retrieving BOA Templates
To insert this slide into your presentation
To insert this slide into your presentation
To insert this slide into your presentation
You can please some of the people some of the time…
To insert this slide into your presentation
To insert this slide into your presentation
To insert this slide into your presentation
To insert this slide into your presentation
To insert this slide into your presentation
Presentation transcript:

Creating Session By huda AlSuwailem

To add the new Global Application Class to your project: right click the project entry in Solution Explorer. choose Add New Item from the context menu. You’ll see an Add New Item dialog box. Select Global Application Class from the template list.

A Global Application Class contain five functions 1- Application_Start : This function contains the Code that runs on application startup. 2- Application_End: This function contains the Code that runs on application shutdown. 3- Application_Error : This function contains the Code that runs when an unhandled error occurs. 4- Session_Start : This function contains the Code that runs when a new session is started. 5- Session_End : This function contains the Code that runs when a session ends.

If you want to initialize the values of variables that you will use in the session, do this:

For example:

This will appear after entering the previous data and clicking on the registration button.

File Upload Rehab AlFallaj

Insert FileUpload control from Toolbar

hints 1- Don’t forget to Add a Folder for example: “UploadedImages” in your website to hold all the uploaded 2- You can separate the uploaded files depend on the file type. 3- If you didn’t specify which file type you allow to uploaded, then any type of files (images,documents,viruses … etc) will be allowed to upload.