Resources

Apache WAMP vhost with SSL Configuration

November 28th, 2008 | Posted in Apache, Software, Windows Vista, Windows XP
0

If you are developing in a Windows environment and need to host multiple sites on your Apache development workstation or server here are some tips for setting up your Apache configuration. Download and install XAMPP http://www.apachefriends.org/en/xampp-windows.html Verify apache is running after installation <a href="http://localhost" target="_blank">http://localhost</a> NOTE: If you are also running IIS you will need ...

The requested operation requires elevation Fix for Vista

November 28th, 2008 | Posted in Windows Vista
1

If you are try to run ipconfig on Vista as a non-Administator user you probably have seen this error. The requested operation requires elevation You can get around this error by doing the following. Click on Start, or the Windows Logo in the bottom left All Programs Accessories Right click Command Prompt Select Run as ...

Visual Studio.NET Error List and Task List

November 27th, 2008 | Posted in ASP.NET, Programming
0

Here is a great article that explains the Error and Task List within Visual Studio. The Error List shows any errors and warnings within your project and the Task List helps you track your progress and mark items as completed just as you would with an external todo list application. Read more at http://en.csharp-online.net/Visual_Studio_Web_Applications%E2%80%94Error_List_and_Task_List...

My Essential Developer's Toolbox – Part I

November 23rd, 2008 | Posted in ASP.NET, MySQL, PHP, Programming, SQL Server, Software
2

This is a multi-part post that lists all of the tools that I use on a regular basis as a web developer. The list is Microsoft Windows centric but I will point out the applications that are cross-platform (as best as I can). IDEs (Integrated Development Environment)* Microsoft ASP.NET Both of the IDEs below are ...

PHP implode() Function with C#

November 23rd, 2008 | Posted in ASP.NET
0

The following snippet will join values in an array with a specified separator. string[] items = new string[] { "one", "two", "three" }; string.Join(", ", items);...

Missing ASP.NET Tab in inetmgr

November 23rd, 2008 | Posted in ASP.NET, IIS
0

If your ASP.NET tab has disappeared (mine was caused by installing ISAPI_Rewrite) then the following MSDN blog article has a tool you can use to fix it. http://blogs.msdn.com/tom/archive/2008/04/17/asp-net-tab-missing.aspx...

Find a Nested Web Control within a Web Control with C#

November 20th, 2008 | Posted in ASP.NET
0

I was having issues accessing a web control directly within a user control and used the following to access the web control within a LoginView in the User Control. The same syntax below can be used if you are looking for a nested control within a control. System.Web.UI.WebControls.Literal name_literal = (System.Web.UI.WebControls.Literal)this.LoginView1.FindControl("name"); name_literal.Text = "Text goes ...