Web Design Forum HTML CSS JavaScript PHP Graphic Design SEO forum
ASP.NET Resources - Printable Version

+- Web Design Forum HTML CSS JavaScript PHP Graphic Design SEO forum (http://www.webdesignforum.com.au)
+-- Forum: Web and Graphic Design (/forumdisplay.php?fid=1)
+--- Forum: Programming (/forumdisplay.php?fid=10)
+--- Thread: ASP.NET Resources (/showthread.php?tid=28)

Pages: 1 2


ASP.NET Resources - dreamcon - 06-05-2010 04:48 PM

I feel we needed a dedicated area for ASP.NET Tutorials and resources, so I am working on compiling said resource

Learning Resources:

* W3Schools
* 123ASPX
* MSCOnline
* ASPNET Tutorials
* QuickStarts Online
* ASP.net How Do I Videos
* Microsoft ASP.NET


Tools:

* SharpDevelop *
* Visual Web Developer Express *
* Visual Studio Express *
* Visual Studio
* Microsoft Web Matrix *
* AJAX Toolkit *
* AJAX Control Toolkit *
* ASP.NET MVC *

If you feel an item should be added to this list then contact either a Moderator or an Admin. Give them th link so they can check it out before adding it to the list


RE: ASP.NET Resources - barbaragabogrecan - 10-08-2010 05:42 PM

Thank you for sharing with us.


RE: ASP.NET Resources - justinOrel - 02-04-2011 04:01 PM

Web Resources rely on a special handler that is named WebResource.axd, which is designed to retrieve assembly resources and serve them to the Web browser. The handler type for WebResource.axd is AssemblyResourceLoader.

When a request comes in from the client for WebResource.axd, the handler looks for the Web Resource identifier in the QueryString method of the Request object. Based on the value of the Web Resource identifier, the handler then tries to load the assembly that contains this resource. If this operation is successful, the handler will then look for the assembly attribute and load the resource stream from the assembly. Finally, the handler will grab the data from the resource stream and send it to the client together with the content type that you specify in the assembly attribute.


RE: ASP.NET Resources - peterpan020588 - 06-11-2011 01:28 AM

Thanks for imfomation


RE: ASP.NET Resources - netshet - 08-15-2011 07:21 PM

these are tool is good for all


RE: ASP.NET Resources - anusha - 10-24-2011 06:19 PM

These are some of resources of the ASP.net:
1.ASP.NET MVC
2.Glimpse
3.Composite
4.Webmatrix
5.DotNetSlackers
6.DotNetNuke


RE: ASP.NET Resources - MarryRock - 11-30-2011 09:33 PM

Yup you are saying right above because I have been using that tutorials since 5months and its really work great and sharing that information you done a fabulous job. Thanks


RE: ASP.NET Resources - websitebuildersperth - 01-11-2012 09:50 PM

ASP.NET enables you to create a page that can obtain content and other data based on the preferred language setting for the browser or based on the user's explicit choice of language. Content and other data is referred to as resources and such data can be stored in resource files or other sources


RE: ASP.NET Resources - displaybanner - 01-13-2012 07:56 PM

Creating Resource Files for ASP.NET Web Sites


In ASP.NET, you can create resource files that have different scope. You can create resource files that are global, which means that you can read the resource file from any page or code that is in the Web site. You can also create local resource files, which store resources for a single ASP.NET Web page (.aspx file).
Global Resource Files

You create a global resource file by putting it in the reserved folder App_GlobalResources at the root of the application. Any .resx file that is in the App_GlobalResources folder has global scope. Additionally, ASP.NET generates a strongly typed object that gives you a simple way to programmatically access global resources.
Local Resource Files

A local resources file is one that applies to only one ASP.NET page or user control (an ASP.NET file that has a file-name extension of .aspx, .ascx, or .master). You put local resource files in folders that have the reserved name App_LocalResources. Unlike the root App_GlobalResources folder, App_LocalResources folders can be in any folder in the application. You associate a set of resources files with a specific Web page by using the name of the resource file.

For example, if you have a page named Default.aspx in the App_LocalResources folder, you might create the following files:

Default.aspx.resx. This is the default local resource file (the fallback resource file) if no language match is found.

Default.aspx.es.resx. This is the resource file for Spanish, without culture information.

Default.aspx.es-mx.resx. This is the resource file for Spanish (Mexico) specifically.

Default.aspx.fr.resx. This is the resource file for French, without culture information.

The base name of the file matches the page file name, followed by a language and culture name, and ending with the extension .resx. For a list of culture names, see CultureInfo.
Localizing Client Script Resources

Localization support for ASP.NET AJAX client script builds on the foundation of the ASP.NET 2.0 localization model. In this model, you embed script files and localized script resources in a hub-and-spoke organization of assemblies (satellite assemblies). You can then selectively use these embedded client scripts and resources for specific languages and regions. This model enables a single code base to support multiple cultures. There is also support for localized script files that are provided as .js files on disk. ASP.NET can serve localized client scripts and resources automatically for specific languages and regions.

For more information, see the following topics:

Localizing Resources for Component Libraries Overview

Walkthrough: Embedding Localized Resources for a JavaScript File

Walkthrough: Globalizing a Date by Using Client Script


RE: ASP.NET Resources - hairtransplant - 01-18-2012 08:06 PM

Generate a <machineKey> section for your web.config
Run images through a color blindness simulator
Analyze bandwidth savings with HTTP compression