Talk:ASP.NET AJAX

This is an old revision of this page, as edited by Bhuvanvel (talk | contribs) at 12:44, 6 November 2007 (Object-Oriented Programming Concepts). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Latest comment: 18 years ago by Talyian in topic Is ASP.NET AJAX open source ?
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






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 ...