| Robby's profileRobby van DammePhotosBlogLists | Help |
|
|
March 11 Creating a dataAccess layer for your applicationI found this excellent document on the msdn site.
Not only can I fully agree with the content, the document is also built up well and provides a good introduction on how a maintainable and scalable dataAccess layer could be built in .Net
http://msdn.microsoft.com/asp.net/default.aspx?pull=/library/en-us/dnaspp/html/CustEntCls.asp Parsing viewstateToday I wanted to check the contents viewstate of a page I was debugging. I found a handy parser for this on the site of Paul Wilson. It's web based, so very handy to use.
February 11 Using server side technology to create a javascript fileA javascript file, which you can reference in the html of your web pages, is typically a .js file residing somewhere on a server that is being served by the webserver to the browser of your web app's user. Sometimes, when doing performance optimization of a script-intensive application, this is way of working is worth further optimisation: The solution to this, is to create a generated js file (e.g. as an aspx page). Another added value: you can determine what code to render and what not. E.G based on the user's browser, security rights, etc One issue though: your code becomes less readable and is a bit more difficult to maintain. It would be nice to have some tooling to do this conversion, but currently we haven't got that yet. What we do have is a baseclass for these scripts. The baseclass is responsible for removing the spaces, tabs, etc and ensure that all the scripts are coded in a consistent way. Robby February 04 Fiddler: a http testing tool that Microsoft should have made years agoMicrosoft is currently developing a powertoy for Internet Explorer that is able to trace and monitor http trafic. If even allows you to "fiddle" with the http requests and responses when you're tracing. Hence the name "Fiddler". A first article on MSDN describes the overall in and out of the tool. http://msdn.microsoft.com/ie/default.aspx?pull=/library/en-us/dnwebgen/html/IE_IntroFiddler.asp I did some initial tests with the tool and they are promising, though there are still some improvements to make (logical considering it's only V0.98) Nevertheless, I'm glad to see MS developing this kind of tooling (hope it stays free though). Robby |
|
|