<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" validateRequest="false" %>
其他項目在sample code裡面的aspx會有sample
webconfig 可能會用到,盡量針對單一網頁使用 單一網頁會使用到
<location path="Default.aspx">
<system.web>
<httpRuntime requestValidationMode="2.0" />
</system.web>
</location>
※補充說明 2020/5/19
如果你的aspx放在資料夾底下,可以這樣寫
這一篇說路徑要放 ~/ ,但實測(.NET 4.0)是不用的...
https://stackoverflow.com/questions/5844481/web-config-location-element-settings
<location path="test/Default.aspx">
<system.web>
<httpRuntime requestValidationMode="2.0" />
</system.web>
</location>
以上文章僅用紀錄資料使用.....