Jump to content

Talk:ASP.NET AJAX

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Bhuvanvel (talk | contribs) at 12:42, 6 November 2007 (Action Script is a object-oriented programming in Flash exhaustively). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
WikiProject iconComputing Unassessed
WikiProject iconThis article is within the scope of WikiProject Computing, a collaborative effort to improve the coverage of computers, computing, and information technology on Wikipedia. If you would like to participate, please visit the project page, where you can join the discussion and see a list of open tasks.
???This article has not yet received a rating on Wikipedia's content assessment scale.
???This article has not yet received a rating on the project's importance scale.

Wikipedia:WikiProject .NET/template

Dose Ajax.NET can be used with ASP.NET AJAX together in one project? Or maybe it will conflict each other?

20:09, 15 January 2007 (UTC)


How To Select Master Page At Run Time?

Opinionated article

This article is fairly opinionated, and not in a good way, towards a product without citing sources or providing useful information about What the article is about, Why it is interesting, and Where to go to get more information. I am concerned that this article fails to meet the standards for a Wikipedia article. --131.107.0.73 01:58, 28 March 2007 (UTC)[reply]

Is ASP.NET AJAX open source ?

If it is , what license is it under ? GPL? :)

I can not find license from its home site. --Android.en 15:30, 21 April 2007 (UTC)[reply]

Client-side JS library and the Controls Toolkit are released under the Microsoft Permissive License. Server implementation is released as a no-modify Reference License. http://weblogs.asp.net/scottgu/archive/2007/01/30/asp-net-ajax-1-0-source-code-released.aspx Talyian 20:38, 21 August 2007 (UTC)[reply]



ActionScript Features

ActionScript 2.0 is a major grammatical overhaul of ActionScript as it existed in Flash. It adds relatively little new runtime functionality to the language but radically improves object-oriented development in Flash by formalizing objected-oriented programming (OOP) syntax and methodology.It can use as a official vocabulary for creating classes and objects.


Action Script has a adds of syntactic support for traditional object-
oriented features.ActionScript provides a class keyword for creating
classes and an extends keyword for establishinginheritance.

Object-Oriented ActionScript

Flash users who are new to object-oriented programming (OOP) are often
familiar with many object-oriented concepts without knowing their
formal names.They demystifies some of the terminology and brings
newer programmers up to speed on OOP concepts.

Object-Oriented Programming Concepts

An object is a self-contained software module that contains related 
functions and variables and also called as Method and properties.
Classes can represent theoretical concepts, such as a timer, or physical
entities in a program, such as a pull-down menu etc...

To build an object-oriented program, we need ...

* Create one or more classes.
* Make(i.e., instantiate) objects from those classes.
* Tell the objects what to do.


Class Syntax

The ActionScript that defines the class might look like the source code
is new to you..

Example: 

class race {
// This is a public property named speed.
public var speed:Number;
// This is a private property named damage.
private var damage:Number;
// This is a constructor function, which initializes
// each race is instance.
public function race( ) {
speed = 100;
damage = 0;
}
// This is a public method named Low( ).
public function Low ( ):Void {
// Code that Low Speed appear 0- 70 Kmph to car...
}
// This is a public method named High( ).
public function High( ):Void {
// Code that High Speed appear above 70 Kmph to car...
}
}



Note: See the race class groups related aspects of the program nearlly together. such as speed and damage.., related to race class group with their functions used to move the Low or High Speed..


          • Will Be Continue... soon ...