Click here to Skip to main content
15,868,016 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
When i tried to publish a website i see some extension for each and every file that was published why it is happening

C#
<%@ page language="C#" autoeventwireup="true" inherits="Default4, App_Web_oq3urubu" %>


You can see the extension
App_Web_oq3urubu


Why this is happening for each and every page. What should i d in order to rectify this.
Posted

Don't even try: It is because when you publish the website it compiles it into a different form. The published files on the server are not the source files you use in development.
 
Share this answer
 
Comments
demouser743 14-Sep-11 5:21am    
So what's the best to way to host my files to server
When you publish a site, the code behind file will be converted to dll. Here, App_Web_oq3urubu is dll name. You can find this dll under App_Code folder. So, to refer the dll, dll name will be added in page tag.
 
Share this answer
 
Comments
demouser743 14-Sep-11 5:21am    
Even if i have an website with some web pages this is occurring
Dll will be in the Bin folder but it will be the compiled version of class files in the App_code folder and .aspx.cs files. The dllname in the aspx page identifies the page to call that dll.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900