Lúc chạy với VS2010 thì vẫn bình thường.
Kỳ sau mình up lên host thì nó bị "Compilation Error" mặc dù file mình up lên ngoại trừ cái web.config sửa lại cho phù hợp thì ko sửa gì trong mấy cái dll cả h:
Ai có lời khuyên gì cho mình ko? File web.config của mình, mình chọn cái targetFramework là 4.0
Kỳ sau mình up lên host thì nó bị "Compilation Error" mặc dù file mình up lên ngoại trừ cái web.config sửa lại cho phù hợp thì ko sửa gì trong mấy cái dll cả h:
Ai có lời khuyên gì cho mình ko? File web.config của mình, mình chọn cái targetFramework là 4.0
PHP Code:
<?xml version="1.0"?>
<configuration>
<connectionStrings>
<add name="AssignmentsFinalConnectionString" connectionString="workstation id=pwblog01.mssql.somee.com;packet size=4096;user id=pwblog;pwd=Duc123456;data source=pwblog01.mssql.somee.com;persist security info=False;initial catalog=pwblog01"
providerName="System.Data.SqlClient" />
<add name="AssignmentsFinalConnectionString1" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|AssignmentsFinal.mdf;Integrated Security=True;User Instance=True"
providerName="System.Data.SqlClient" />
<add name="AssignmentsFinalConnectionString2" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|AssignmentsFinal.mdf;Integrated Security=True;User Instance=True"
providerName="System.Data.SqlClient" />
</connectionStrings>
<system.web>
<authentication mode="Forms">
<forms name="MYWEBAPP.ASPXAUTH" loginUrl="Web\Login.aspx" protection="All" path="/" defaultUrl="Web\"/>
</authentication>
<authorization>
<allow users="*"/>
</authorization>
<compilation debug="true"/>
<customErrors mode="Off" >
</customErrors>
</system.web>
<system.webServer>
<defaultDocument>
<files>
<add value="index.aspx" />
</files>
</defaultDocument>
</system.webServer>
</configuration>
Comment