asp.net - Changes to aspx.vb file not reflected on the server -
i made tweak aspx.vb file on test server, small change custom error message being written in code, making copy of file, changing text , replacing file on server. however, change not reflect when go page browser.
i thinking had file not being compiled. however, seems if aspx.vb file should compiled dynamically. there setting ensures happens? copy of web.config file:
<?xml version="1.0" encoding="utf-8"?> <configuration> <system.web> <compilation debug="true" strict="true" explicit="true" /> <authentication mode="windows" /> <identity impersonate="true" /> <customerrors mode="on" /> </system.web> <system.webserver> <validation validateintegratedmodeconfiguration="false" /> <modules runallmanagedmodulesforallrequests="true" /> <defaultdocument> <files> <add value="myideasso.aspx" /> </files> </defaultdocument> <directorybrowse enabled="true" /> </system.webserver> <location path="myideasso.aspx"> <system.webserver> <defaultdocument enabled="true"> <files> <add value="myideasso.aspx" /> </files> </defaultdocument> </system.webserver> </location> </configuration>
i guess main thing want know if changes aspx.vb page on server, should need else work. thanks.
you need compile application, .vb file update contained in application's dll.
Comments
Post a Comment