September 2007 Entries

treeview walkthroughs

treeview walkthroughs http://quickstarts.asp.net/

User Control for Date Range, aggregates simpler Date with Popup Calendar

I created a user control that encapsulates a date range, and aggregrates date user control below. I converted user control from C# to VB available from article below, that pops up a calendar page Original Article: http://www.csharphelp.com/a

On Web Page, until page loaded, display "Please Wait" with "hourglass/wait" mouse cursor

Method 1: 1) In HTML Header, before HTML Body, hourglass cursor <script language="javascript"> document.body.style.cursor = 'wait' 2) Add "Please Wait" Label (Visible = true) &nbsp; &nbsp; <asp:label id="lblPleaseWait" Text="Loading data, please wait..." ForeColor="Red" Visible="True" CssClass="labelCopy" Runat="server" Font-Size="Medium">...pl... wait...</asp:label> 3) At end of HTML Body, make label not visible, default cursor <script language="javascript"> document.getElementById('lb...

Visual Studio Access to bin folder denied.

If you start a Visual Studio VB/C# project and put into VSS, Visual Studio will not automatically include the bin folder in VSS. Conversely, some project managers like to add the bin folder to VSS, so that it is easier to keep a version of third-party components/DLLs “together with” the source code. When you are in Visual Studio, and you get the latest version of a Project from VSS: "access to pdb/d When the bin folder is in Visual Source Safe, When you do a Rebuild, you will see an error/warning...