ASP .NET Features

Comments
Would you like to comment?

Sign In if already a member, or Join Now for a free account.

Presentation Transcript Presentation Transcript

Asp .Net New : Asp .Net New

What's New in 2.0 : What's New in 2.0 Dynamically Compiled Classes Simplified Code Behind Pages Several New Server Controls New Declarative Expression Syntax

Slide 3 : ASP.NET pages are text files with an .aspx file name extension. Pages consist of code and markup and are dynamically compiled and executed on the server to produce a rendering to the requesting client browser (or device).

Slide 4 :

Name: Category:

Code behind : Code behind <%@ Page Language="C#"%>

Name: Category:

<% for (int i=0; i <8; i++) { %> Welcome to ASP.NET
<% }%>

Print on button click : Print on button click <%@ Page Language="C#" %>

Name: "> Category:

<% if (Request.QueryString["Lookup"] != null) { %> Hi <%=HttpUtility.HtmlEncode(Request.QueryString["Name"]) %>, you selected: <%=HttpUtility.HtmlEncode(Request.QueryString["Category"]) %> <% } %>

Namespace : Namespace In general, a namespace is an abstract container providing context for the items (names, or technical terms, or words) it holds and allowing disambiguation of items having the same name (residing in different namespaces). As a rule, names in a namespace cannot have more than one meaning, that is, two or more things cannot share the same name. A namespace is also called a context, as the valid meaning of a name can change depending on what namespace applies. Names in it can represent objects as well as concept, whether it is a natural or ethnic language, a constructed language, the technical terminology of a profession, a dialect, a sociolect, or an artificial language (e.g., a programming language).

Biswadip Goswami
Knowledge is for ALL !
User
1 Members Recommend this Teacher
Copyrights © 2009 authorGEN. All rights reserved.