Browse by Tags

All Tags » ASP.NET (RSS)
Article on Agile Requirements Modeling.
Posted by HomeSkillet | 1 comment(s)
Filed under: ,
Great debugging faq list from ISerializable .
Posted by HomeSkillet | 1 comment(s)
Filed under:
Today I needed the ASP.NET Panel web control to render as a html div element in Netscape 7.0 and Mozilla 1.0 (as opposed to a html table) for several different reasons that would take too long to detail here. Awhile back I found the following code snippet...
Posted by HomeSkillet | 32 comment(s)
Filed under:
If you've ever seen the web.config file that ASP.NET uses, and thought, "Wow, I'm so glad they configure things that way, in this nice, easy-to-use XML file. Wish I could do that!" then you should check out the System.Configuration namespace. There's...
Posted by HomeSkillet | with no comments
Filed under:
I often see people using string concatenation to create directory names. Like this: string path = "C:\\data\\" + filename; < /EM > But there's a much better API: string path = System.IO.Path.Combine("C:\\data", filename);< /EM > Not only does...
Posted by HomeSkillet | with no comments
Filed under:
.NET on Linux and Unix soon... http://www.internetweek.com/breakingNews/showArticle.jhtml%3Bjsessionid=HJNWMSBMWJTCSQSNDBCCKICCJUMEKJVN?articleID=7900085
Posted by HomeSkillet | 1 comment(s)
Filed under: ,
Well I just find another one (It's new for me). What I do is after a first copy of my application to my Production server, everytime I need to update the site I exclude Webconfig from the project, copy and include again WebConfig. [ heLP .Net Blog ] I...
Posted by HomeSkillet | 3 comment(s)
Filed under:
More Posts