Question on Reference

  • Thread starter Thread starter Wayne Wengert
  • Start date Start date
W

Wayne Wengert

I built a project in VSNET 2003 and it initially named the first form
"WebForm1". I changed the name of the form to "Eval1" but when I look at the
HTML code I see that it still shows WebForm1 in the "Inherits" element:

<%@ Page Language="vb" AutoEventWireup="false" Codebehind="myProj.aspx.vb"
Inherits="myProj.WebForm1"%>

There is no WebForm1 anymore?

Wayne
 
I've noticed that Studio doesn't usually propogate changes to the Page
Directives in the HTML. You need to manually update them yourself. Unless
I'm missing something, but this is how I've had to do it in the past.
 
Back
Top