Technology, startups, health & entrepreneurial tidbits

Category Archives: ASP.NET

Prototype/Proof of Concept code is not production code!

One thing that should be burned into the heads of many developers is that Prototype/Proof of Concept (PoC) code is NOT production code. Proof of Concept code is not production code. Prototype code is, more or less, proof of concept. When you create a prototype or PoC, it’s something that can be shown to theContinue Reading

ASP.NET File Name at Runtime

Retrieving the ASP.NET filename can be done in many ways. I’ve created this method in a few helper classes in some of the different jobs I have. public string GetCurrentPageFileName(){   return new System.IO.FileInfo(Request.PhysicalPath).Name;} I’ve also created a base page class in the past to hold these types of methods (below). /// <summary>/// Base Page class///Continue Reading