Talk:ASP.NET AJAX: Difference between revisions

Content deleted Content added
Bhuvanvel (talk | contribs)
AnomieBOT (talk | contribs)
m Substing templates: {{WikiProject .NET}}. See User:AnomieBOT/docs/TemplateSubster for info.
 
(16 intermediate revisions by 12 users not shown)
Line 1:
{{WikiProject Computing}}banner shell|class=Start|
{{WikiProject JavaScript|importance=Low}}
 
{{Wikipedia:WikiProject .NET/templateSoftware|importance=low}}
{{WikiProject Microsoft|net=yes|net-importance=low}}
}}
 
==Using [[Ajax.NET]] with [[ASP.NET AJAX]]==
Line 9 ⟶ 11:
 
 
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.
--[[User:131.107.0.73|131.107.0.73]] 01:58, 28 March 2007 (UTC)
 
I agree that this article is HIGHLY opinionated and devoid of almost all useful information. I looked around a bit and found that a lot of the opinionated text was taken from [http://www.theserverside.net/discussions/thread.tss?thread_id=44543], which is a blatant promotion for a competing product ('Gaia AJAX Widgets').
 
Article needs to be updated with ASP.NET page lifecycle information and other relevant information.
--[[Special:Contributions/207.95.37.73|207.95.37.73]] ([[User talk:207.95.37.73|talk]]) 17:38, 26 March 2008 (UTC)
 
== Is ASP.NET AJAX open source ? ==
Line 25 ⟶ 32:
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 [[User:Talyian|Talyian]] 20:38, 21 August 2007 (UTC)
:thank you:)--[[User:Android.en|Android.en]] ([[User talk:Android.en|talk]]) 16:50, 12 April 2008 (UTC)
 
== Maintenance and rating of JavaScript articles ==
 
Concerning editing and maintaining JavaScript-related articles...
 
=== Collaboration...===
If you are interested in collaborating on JavaScript articles or would like to see where you could help, stop by [[Wikipedia:WikiProject JavaScript]] and feel free to add your name to the participants list. Both editors and programmers are welcome.
=== Where to list JavaScript articles ===
We've found over 300 [[Index of JavaScript-related articles|JavaScript-related articles]] so far. If you come across any others, please add them to that list.
 
=== User scripts ===
 
The WikiProject is also taking on the organization of the Wikipedia community's user script support pages. If you are interested in helping to organize information on the user scripts (or are curious about what we are up to), [[Wikipedia talk:WikiProject JavaScript|let us know]]!
 
If you have need for a user script that does not
yet exist, or you have a cool idea for a user script or gadget, you can post it at [[Wikipedia:User scripts/Requests]]. And if you are a JavaScript programmer, that's a great place to find tasks if you are bored.
 
=== How to report JavaScript articles in need of attention ===
=='''Object-Oriented ActionScript'''==
If you come across a JavaScript article desperately in need of editor attention, and it's beyond your ability to handle, you can add it to our [[Wikipedia:WikiProject JavaScript#JavaScript-related articles that need attention|list of JavaScript-related articles that need attention]].
 
Flash users who are new to object-oriented programming (OOP) are often<br />familiar with many object-oriented concepts without knowing their<br />formal names.They demystifies some of the terminology and brings<br />newer programmers up to speed on OOP concepts.<br />
 
== '''Object-Oriented Programming Concepts''' ==
 
An object is a self-contained software module that contains related <br />functions and variables and also called as Method and properties.<br />Classes can represent theoretical concepts, such as a timer, or physical<br />entities in a program, such as a pull-down menu etc...
 
'''To build an object-oriented program, we need ...''' <br />
 
<blockquote>
* Create one or more classes.<br />
* Make(i.e., instantiate) objects from those classes.<br />
* Tell the objects what to do.<br />
</blockquote>
 
<br />
 
== '''Class Syntax''' ==
The ActionScript that defines the class might look like the source code<br />is new to you..
 
'''Example:''' <br />
 
<br />class race {<br />
// This is a public property named speed.<br />
public var speed:Number;<br />
// This is a private property named damage.<br />
private var damage:Number;<br />
// This is a constructor function, which initializes <br />
// each race is instance.<br />
public function race( ) {<br />
speed = 100;<br />
damage = 0;<br />
}<br />
// This is a public method named Low( ).<br />
public function Low ( ):Void {<br />
// Code that Low Speed appear 0- 70 Kmph to car...<br />
}<br />
// This is a public method named High( ).<br />
public function High( ):Void {<br />
// Code that High Speed appear above 70 Kmph to car...<br />
}<br />
}
<br />
 
 
=== Rating JavaScript articles ===
'''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..
 
At the top of the talk page of most every JavaScript-related article is a WikiProject JavaScript template where you can record the quality class and importance of the article. Doing so will help the community track the stage of completion and watch the highest priority articles more closely.
 
Thank you. [[User talk:The Transhumanist|<i>The&nbsp;Transhumanist</i>]] 01:03, 12 April 2017 (UTC)
***** Will Be Continue... soon ...