Content deleted Content added
DDFoster96 (talk | contribs) →License: new section |
|||
(45 intermediate revisions by 29 users not shown) | |||
Line 1:
{{talkheader|search=yes}}
{{WikiProject
{{
{{WikiProject Microsoft |importance=Mid |net=yes |net-importance=High |windows=yes |windows-importance=Mid}}
}}
{{mergedfrom|ASPX}}
{{archives}}
== Session State sharing nowhere to be found ==
This part seems incorrect:
<blockquote>
On IIS 6.0 and lower, pages written using different versions of the ASP framework cannot share Session State without the use of third-party libraries. This criticism does not apply to ASP.NET and ASP applications running side by side on IIS 7. With IIS 7, modules may be run in an integrated pipeline that allows modules written in any language to be executed for any request.[18]
</blockquote>
It seems there is no (easy) way to share session state between ASP.NET and legacy (or classic) ASP pages both placed in the same directory (hence in a same web application). There a lot of solutions involving databases and a lot of changes on both places (ASP.NET and ASP), but nothing working out-of-the-box. Is it possible this statement to be valid only for ASP.NET applications, say one that is 1.1 and another that is 2.0?
--[[Special:Contributions/85.130.3.78|85.130.3.78]] ([[User talk:85.130.3.78|talk]]) 11:23, 23 March 2009 (UTC)
==Clean code==
The article refers to "clean code" without a link. Quotation marks are around "clean", but not "code". If this is a reference to [[Robert Cecil Martin|Robert C Martin]]'s concept of clean code, I recommend extending the quotation marks to surround both words, and making that a link, either to an article on clean code, or at least to the one on Martin. [[User:Unfree|Unfree]] ([[User talk:Unfree|talk]]) 16:01, 4 November 2009 (UTC)
== Information about ViewState incorrect ==
The viewstate does not track form values, it's a source of confusion amongs a lot of ASP.NET programmers.
Form values are already sent with the postback data, so these don't have to be in the viewstate. See:
* http://msdn.microsoft.com/en-us/library/ms972976.aspx
* http://weblogs.asp.net/infinitiesloop/archive/2006/08/03/Truly-Understanding-Viewstate.aspx
Viewstate only has to contain the state which changed from the defaults set in the ASCX files and OnInit() method. That includes:
* modifications by a event handler (e.g. showing an panel after a OnClick event -> the Visibility has to be tracked and restored)
* modifications by the `Page_Load()` event.
Programmers who fill the default Page_Load() method, end up with a huge ViewState.
This state is transmitted back and forth with every page request, causing performance issues.
[[User:Vdboor|Vdboor]] ([[User talk:Vdboor|talk]]) 09:42, 10 December 2009 (UTC)
WHY WE USE ASP.NET,WHY NOT USE PHP OR JAVA# <span style="font-size: smaller;" class="autosigned">—Preceding [[Wikipedia:Signatures|unsigned]] comment added by [[Special:Contributions/220.226.191.107|220.226.191.107]] ([[User talk:220.226.191.107|talk]]) 03:51, 9 January 2010 (UTC)</span><!-- Template:UnsignedIP --> <!--Autosigned by SineBot-->
== Faulty Criticisms ==
I believe the criticism section parts regarding session/state management was written by someone who did not fully understand the technology. What is being refered to here are inprocess sessions, one of the many ways ASP.NET/IIS can handle session data, and only a valid solution for the smallest of deployments. Session data storage is typically handled outside of the webserver that way a single site can be serviced by many web servers and gracefully handle server failures.
ASP.NET handles using sql as a session store, and comes with scripts to build these databases (except .net 1.0 which is located here. http://support.microsoft.com/kb/311209 )
There are plenty of valid criticisms to make about ASP.NET (Memory use, first hit compiling delay, inability to really just use the pieces you want, not embracing friendly/suffixless urls, etc) without traveling down such subjective criticisms <span style="font-size: smaller;" class="autosigned">—Preceding [[Wikipedia:Signatures|unsigned]] comment added by [[Special:Contributions/97.102.228.141|97.102.228.141]] ([[User talk:97.102.228.141|talk]]) 06:29, 25 February 2010 (UTC)</span><!-- Template:UnsignedIP --> <!--Autosigned by SineBot-->
:Just come across this page and the criticism is mostly unsourced. I'm going to remove the unsourced material as original conclusions which don't appear to be coming from a third party source. Like you say, there is criticism out there which is citable, however the current criticism does not seem appropriate without sources. --[[User:Bill|Bill]] <sup>([[User_talk:Bill|talk]]|[[Special:Contributions/Bill|contribs]])</sup> 10:31, 16 May 2010 (UTC)
"At the server side, the application may change the viewstate, if the processing requires a change of state of any control."
Huh? This isn't a well formed sentence... <span style="font-size: smaller;" class="autosigned">—Preceding [[Wikipedia:Signatures|unsigned]] comment added by [[Special:Contributions/99.224.141.81|99.224.141.81]] ([[User talk:99.224.141.81|talk]]) 17:29, 10 July 2010 (UTC)</span><!-- Template:UnsignedIP --> <!--Autosigned by SineBot-->
Surely there should be a lot more in Criticism than there currently is. The only item in there at the moment has more to do with IIS than ASP.NET, but there are plenty of criticisms regularly levelled against ASP.NET - the viewstate becoming ridiculousy huge, the javascript requirement for many of the controls, the way it messess around with your HTML id's, the fact that even basic validation is done on the server, loss of control over the source, the noticable delay when doing a first compile, relatively high server requirements, the desktop style model is actually rather unsuitable for most websites, and the fact that many of the methods pushed by Microsoft are only required due to this odd development style in the first place. Of course, some of these thins are more of a problem with the way Visual Studo handles ASP.NET solutions, but that hasn't seemed to have stopped anyone using such things as supposed benefits. Half of the benefits listed are only benefits if you don't know how to do it yourself in the firs place. Also, you can get around many of these problems by not using feature X or Y, but if you have to do that for most of the features, you have to ask if you're using the right tchnologies in the first place. Horribly unbalanced shill articles like this are why no-one believes anything they read on Wiki any more. <span style="font-size: smaller;" class="autosigned">—Preceding [[Wikipedia:Signatures|unsigned]] comment added by [[Special:Contributions/94.5.13.206|94.5.13.206]] ([[User talk:94.5.13.206|talk]]) 12:34, 22 November 2010 (UTC)</span><!-- Template:UnsignedIP --> <!--Autosigned by SineBot-->
== "
I defy anybody to tell me what this means:
"ASP.NET uses a visited composites rendering technique. During compilation, the template (.aspx) file is compiled into initialization code which builds a control tree (the composite) representing the original template. Literal text goes into instances of the Literal control class, and server controls are represented by instances of a specific control class. The initialization code is combined with user-written code (usually by the assembly of multiple partial classes) and results in a class specific for the page. The page doubles as the root of the control tree." <span style="font-size: smaller;" class="autosigned">—Preceding [[Wikipedia:Signatures|unsigned]] comment added by [[Special:Contributions/74.176.210.68|74.176.210.68]] ([[User talk:74.176.210.68|talk]]) 03:28, 16 May 2011 (UTC)</span><!-- Template:UnsignedIP --> <!--Autosigned by SineBot-->
== "Examples Inline Code" Vandalism ==
Someone with the IP address [[Special:Contributions/117.201.97.210|117.201.97.210]] {{diff|ASP.NET|457322078|457284014|changed a portion}} of the [[ASP.NET#Inline_code|example code]] on the page. I would revert this change but I'm not sure how to do it without affecting any other edits made to the article after that edit. [[User:Aidilfbk|aidilfbk]] ([[User talk:Aidilfbk|talk]]) 13:40, 5 December 2011 (UTC)
:Thanks for the warning. I just removed it. --[[User:Enric Naval|Enric Naval]] ([[User talk:Enric Naval|talk]]) 15:30, 5 December 2011 (UTC)
== History Section Out of Date ==
The "History" section seems wildly out of date; it ends in 2003, before the release of ASP.NET 2.0.
[[User:Moraleboost|Moraleboost]] ([[User talk:Moraleboost|talk]]) 04:05, 1 December 2012 (UTC)
== Features of asp.net ==
It provide GUI(graphical user interface) environment for user to design attractive webform <!-- Template:Unsigned --><small class="autosigned">— Preceding [[Wikipedia:Signatures|unsigned]] comment added by [[User:Anshu256|Anshu256]] ([[User talk:Anshu256#top|talk]] • [[Special:Contributions/Anshu256|contribs]]) 11:52, 3 November 2017 (UTC)</small> <!--Autosigned by SineBot-->
== External links modified ==
Hello fellow Wikipedians,
I have just modified one external link on [[ASP.NET]]. Please take a moment to review [[special:diff/820372806|my edit]]. If you have any questions, or need the bot to ignore the links, or the page altogether, please visit [[User:Cyberpower678/FaQs#InternetArchiveBot|this simple FaQ]] for additional information. I made the following changes:
*Added archive https://web.archive.org/web/20071014005507/http://www.extremeexperts.com/Net/Articles/ViewState.aspx to http://www.extremeexperts.com/Net/Articles/ViewState.aspx
When you have finished reviewing my changes, you may follow the instructions on the template below to fix any issues with the URLs.
{{sourcecheck|checked=false|needhelp=}}
Cheers.—[[User:InternetArchiveBot|'''<span style="color:darkgrey;font-family:monospace">InternetArchiveBot</span>''']] <span style="color:green;font-family:Rockwell">([[User talk:InternetArchiveBot|Report bug]])</span> 10:10, 14 January 2018 (UTC)
== Version 4.8 missing ==
== License ==
The article's short description (only visible on mobile or at the top of the article source) describes ASP.NET as 'Open-source web application framework', but the infobox says 'License Proprietary software' One of them must be wrong. The infobox cites a near decade old source, so things may have changed in the meantime, but I'm not knowledgable enough on ASP.NET to know the correct answer. [[User:DDFoster96|DDFoster96]] ([[User talk:DDFoster96|talk]]) 15:42, 1 November 2024 (UTC)
|