-
|
I’ve have just sent this email to the developers exchange group in my company: I think you all know the routing engine that works with ASP.NET MVC framework to enable customizing URLs and mapping those to the corresponding controls, actions and their parameters. Some of you may know too that the routing engine is not just for ASP.NET MVC, but ASP.NET in general. If you happened to download the source code of the ASP.NET MVC framework (any preview), you’d have noticed that the routing comes as DLL not in source code format like other parts of the ASP.NET MVC framework. I have found an interesting series of articles going through the routing assembly that I thought you might be interested in: The MVC routing assembly – part I The MVC routing assembly...
|
-
|
Hi, In My last two posts I talked about · How to open and close a word document programmatically . · How to save a word document in different programmatically . In this post I will talk about how we can replace words in the word document. Many a times we will find ourselves in situation where by we have a word document with a predefined template where some of the words need to be replaced by user entered values. This can be easily performed with the help of word automation. To replace words in the word document we first need to open the word document programmatically. The following code snippet function shows how we can replace the word in the document. If we want to replace the word inside a selection then we need to pass the range of the selection...
|
-
|
The GoogleMaps.Subgurim.NET 3.0 version brings us a lot of improvements, news features and bugs correction. It is, probably, the most important change made since this Google Maps control for ASP.NET was born. There is a list with the most important changes: Improvements Important: GMap_Width and GMap_Height are no longer available. Instead we will use width and Height. New map view: the raised map or Physical Map . Complete GoogleEarth , Sky , Mars y Moon maps support. Added two new fields to GAjaxServerEventArgs: zoom y map type . New property: GAdsManager . Improved the GoogleBar with GoogleBarOptions . serverEvents improved with ajaxUpdateProgressMessage . New GoogleMaps parallel control: Static Map . New controls for choosing between the...
|
-
|
I've been exploring the world of the web designer and noticed that ASP.NET does not exist in that world. I've been reading web design blogs and browsing through articles on http://www.designfloat.com/ , a sort of DIGG site for the design community, and I don't encounter any mention of ASP.NET at all. I have observed that web designers are somewhat aware of PHP because they are heavily involved in developing custom themes for WordPress. Creating skins and themes for open source web applications seems to be a good gig for web designers. But a lot of the attention is on WordPress, Joomla, and OsCommerce. I don't find any articles, guides, or other resources on designing for DotNetNuke or ASP.NET Master Pages, etc. Of course, I could...
|
-
|
ASP NET Merge tool allows user to manage and combine assemblies that are created using ASP NET Compilation tool . It works only on assemblies that have been created by using ASP.NET 2.0 or higher. This tool creates one assembly for each folder in target application or it creates each assembly for each file. This tool gives you additional functionality for management and deployment. It allows user to do the following operations. Create single assembly for just single web application UI elements such as controls and pages Create assembly for whole web application Create assembly for each web application and affix to assembly name Syntax aspnet_merge [-?] // -? displays command syntax applicationPath [-keyfile filename [-delaysign]] [-o assemblyname...
|
-
|
This has to be one of the coolest shell extensions that I have seen yet. It is right up there with the Command Prompt Here one. This adds a addition to the right-click menu for a folder for “ASP.NET Web Server Here”. All the information, including Read More......( read more ) Read More......( read more ) Read More...
|
-
|
Here are some links that contains more useful information on ASP.Net MVC. ASP.NET MVC Preview 3 Release This links contains highlevel chnages in MVC preview 3 release and also link to source code at codeplex. Inversion of Control, ASP.NET MVC and Unit Testing Fredrik Kalseth has a cool article that talks about the concepts behind inversion of control (IOC) and how you can use this with ASP.NET MVC to better isolate dependencies and enable better unit testing of your code. ASP.net MVC , MVCContrib, and Using Spring.net as a Controller ... The ASP.net MVC CTP as been out for a few days and I have read quite a number of good posts about using the framework and extending the available. Testing Action Results with ASP.NET MVC Jeremy Skinner blogs...
|
-
|
Algo que siempre queremos saber los usuarios de nuevas tecnologías es la dirección futura que tendran la mismas y su evolución. Quiero compartir con ustedes el Road Map trazado por el team de Asp.net AJAX , este documento detalla hacia donde enfocaran sus esfuerzos este equipo y que novedades podremos esperar tener muy pronto. Sigan el siguiente link: http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=14924 Saludos, Carlos A. Lone Read More...
|
-
|
ASP.NET Compilation tool is used to compile an ASP.NET Web application either in same machine or to deploy on a target machine such as a production server. It helps application performance because end users do not encounter a delay on the first request to the application while the application is compiled on backend. Compilation for deployment can be in one or two ways That removes all files such as code-behind and markup files That retains markup files. Syntax aspnet_compiler [-?] [-m metabasePath | -v virtualPath [-p physicalPath]] [[-u] [-f] [-d] [-fixednames] targetDir] [-c] [-errorstack] [-nologo] [[-keyfile file | -keycontainer container ] [-aptca] [-delaysign]] Example Aspnet_compiler -v /WebApp1 -p "c:\MyProjects\WebApp1" -keyfile...
|
-
|
In this tip, I demonstrate how you can create unit tests for the routes in your ASP.NET MVC applications. I show how to test whether a URL is being mapped to the right controller, controller action, and action parameters. If you are being virtuous about test-driven development when building an ASP.NET MVC application, then you should write unit tests for everything. Write the unit test first then write the code that satisfies the test. Repeat, repeat, repeat, ad nauseam. Routes are a very important...( read more ) Read More...
|