A
AAaron123
Useing vs2008 I created a new web site.
I opened .aspx file to get the tab titled Default.aspx, which has the
views: Source, Split and Design
I draged a couple of components on to the .aspx (design) surface.
I right-clicked default.aspx and selected View Component Designer to get a
tab titled Default.aspx.vb[Design]
Which contains the message: To add components to your class drag them from
the toolbox....
I also opened the .vb file to get the tab titled: Default.aspx.vb
I've run the program and also clicked show all files.
But I can not produce the file *.aspx.designer.vb
The contents of the .vb and the .aspx files are listed below.
I checked the website folder there is no *.aspx.designer.vb file there.
Do I have something setup wrong??
Thanks
Partial Class _Default
Inherits System.Web.UI.Page
End Class
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb"
Inherits="_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></title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
<asp:Button ID="Button1" runat="server" Text="Button" />
<asp:Calendar ID="Calendar1" runat="server"></asp:Calendar>
</form>
</body>
</html>
I opened .aspx file to get the tab titled Default.aspx, which has the
views: Source, Split and Design
I draged a couple of components on to the .aspx (design) surface.
I right-clicked default.aspx and selected View Component Designer to get a
tab titled Default.aspx.vb[Design]
Which contains the message: To add components to your class drag them from
the toolbox....
I also opened the .vb file to get the tab titled: Default.aspx.vb
I've run the program and also clicked show all files.
But I can not produce the file *.aspx.designer.vb
The contents of the .vb and the .aspx files are listed below.
I checked the website folder there is no *.aspx.designer.vb file there.
Do I have something setup wrong??
Thanks
Partial Class _Default
Inherits System.Web.UI.Page
End Class
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb"
Inherits="_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></title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
<asp:Button ID="Button1" runat="server" Text="Button" />
<asp:Calendar ID="Calendar1" runat="server"></asp:Calendar>
</form>
</body>
</html>