Talk:ASP.NET AJAX
![]() | Computing Unassessed | |||||||||
|
Using Ajax.NET with ASP.NET AJAX
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)
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)
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)
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 ...