In Visual Studio .NET, how do I create a new ASP.NET application for an existing ASP.NET project?
First create an IIS application using the IIS MMC. Then in Visual Studio .NET, use the ‘New Project In Existing Folder’ project template (at the end of the template list). It will first ask you for the project name (use the same one you created for the IIS application). Click OK button. Then enter in physical folder location.
In Visual Studio .NET, how do I create a new ASP.NET application which does not have a physical path under wwwroot?
You must first create an IIS application using the IIS MMC. Then in Visual Studio .NET, create a new ASP.NET application and give it the same name you used for the IIS application
How can I hide the HeaderText of the DataGrid
Set the ShowHeader property of the DataGrid to false
How to remove the spaces in a given string?
Use the Namespace System.Text.RegularExpressions VB.NET Dim strval As String = ‘Jack and Jill’ Dim strnewval As String = Regex.Replace(strval, ‘ ‘, ”) Response.Write(strnewval) C# string strval = ‘Jack and Jill’; string strnewval = Regex.Replace(strval, ‘ ‘, ”); Response.Write(strnewval) ;
How can I sort a BoundColumn
Set the SortExpression to the Field Name