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 ...
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 ...
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...
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 ...
The following snippet will join values in an array with a specified separator. string[] items = new string[] { "one", "two", "three" }; string.Join(", ", items);...
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...
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 ...