HTML Help

nov0798

Active Member
Hi all,
I have created a small web page using Visual Studio 2008 for a work project. The issue is that the program using the webpage requires it to be in HTML code. Do you know how I convert this to HTML? Any help would be wonderful.
 
Here is what I have so far for the code:
 
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.vb" Inherits="WebApplication1._Default" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server">
    <div style="height: 707px">
    
        <asp:Button ID="Button1" runat="server" Height="75px" Text="Home" 
            Width="120px" />
&nbsp;
        <asp:Button ID="Button7" runat="server" Height="75px" Text="Send Message" 
            Width="120px" />
&nbsp;
        <asp:Button ID="Button8" runat="server" Height="75px" Text="Add Comments" 
            Width="120px" />
        <br />
        <br />
        <asp:Button ID="Button4" runat="server" Height="75px" Text="Event Search" 
            Width="120px" />
        &nbsp;
        <asp:Button ID="Button9" runat="server" Height="75px" Text="Pending" 
            Width="120px" />
&nbsp;
        <asp:Button ID="Button10" runat="server" Height="75px" Text="Unit Summary" 
            Width="120px" />
    
    </div>
    </form>
</body>
</html>
 
 
Back
Top