If you write to the event log from an ASP.Net application, the default ASPNET account will not have the correct privileges to add your event source. You have to add the event source outside of the ASP.Net application. I used to use a C# console application that I wrote for the purpose of registering...
OK, it seems like it is getting harder to get the ASP.Net tab to show up in IIS. I now have a machine with .Net 1.1, 2.0, 3.0, and 3.5 installed. No matter what I do, the ASP.Net tab will not show. But all is well, as there is a very cool tool created by Denis Bauer (no relation to my wife) that will...
The ASP.Net tab recently disappeared from our server running Windows Server 2003 SP2 (32 bit). It had .Net 1.0, .Net 1.1, .Net 2.0, and .Net 3.0 installed. In order to get the tab to show again, I: Uninstalled IIS (and ASP.Net when prompted) Rebooted the server Re-Installed IIS (with Frontpage Server...
As of May 2001, the W3C Standards state that <i> and <b> are deprecated. These tags give away too much as to the formatting of the text. XML and XHTML are meant to describe the data, not the layout. To that end XHTML v1.0 states that you must use the following instead: <em>Emphasis...
The code below is a quick demo of an ASP.Net Repeater control, writing a link, dates, and description, repeated from database. It shows how to repeat a table for data formatting per data row. It also shows the date formatting within Databinder.Eval. //---------------------------------- <asp:Repeater...
To have server side comments in aspx page: <%-- This is a server side comment --%> <!-- This comment goes to the client -->