I have created a vb.net Web Application. The application is running from Visual Studio. When I try to host the application. It gives me the error Default.aspx.vb file is missing. But the compilation mode is explicit=true in my config file. My Deployment Folder doesn't have any vb files. I have bin folder with my application dll. I am new to .net application. Please help me . Thanks in advance.

<?xml version="1.0"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<system.web>
<compilation debug="true" strict="false" explicit="true" targetFramework="4.0" />
<siteMap>
<providers>
<add name="stock" type="System.Web.XmlSiteMapProvider" siteMapFile="~/Stock.sitemap"/>
</providers>
</siteMap>
</system.web>
</configuration>
