Categories
Asp, Asp.net

How to define custom width for gridview columns.

In this tutorial you will learn how to define custom width for asp.net gridview coloumn width. Your asp.net grid view look like this in code view without specifying any custom coloumns or their width. <asp:GridView ID=”GridView1″ runat=”server”> </asp:GridView> But after the custom coloumn and their width this look like as shown below. <asp:GridView ID=”GridView1″ runat=”server”> […]

Categories
Asp, Asp.net

How to set the Default browser in Visual Studio

How to set the Default browser in Visual Studio To Set the default browser in Visual Studio when running a web application simply follow the below 3 steps: 1.Open visual studio. 2.Click on File menu then click on browse with.” 3.In the dialog box you will be shown the currently installed browsers. Highlight the browser […]

Categories
Asp, Asp.net

How to send a FAX from ASP page

How to send a FAX from ASP page This article describes how to use Microsoft Fax Service to send a fax from an Active Server Pages (ASP) page. The Microsoft Fax Service includes Component Object Model (COM) interfaces that expose functionality that is contained in the Faxcom.dll file. By making calls to Faxcom.dll, you can […]