0
我在.aspx頁面中得到了上述錯誤。我想補充
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta content="utf-8" http-equiv="encoding">
到我的aspx頁面,但仍然我得到這個錯誤plz幫助我...謝謝
我在.aspx頁面中得到了上述錯誤。我想補充
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta content="utf-8" http-equiv="encoding">
到我的aspx頁面,但仍然我得到這個錯誤plz幫助我...謝謝
你應該嘗試在Page指令設置代碼頁(見http://msdn.microsoft.com/en-us/library/ydy4x04a%28v=vs.71%29.aspx)
例如,爲ISO-8859-1,代碼頁是28591:
<%@ Page language="c#" Codebehind="yourpage.aspx.cs" AutoEventWireup="false" Inherits="yourpage"
codePage="28591" %>
和UTF-8,代碼頁是65001:
<%@ Page language="c#" Codebehind="yourpage.aspx.cs" AutoEventWireup="false" Inherits="yourpage"
codePage="65001" %>
對於代碼頁的列表,請參閱 http://msdn.microsoft.com/en-us/library/windows/desktop/dd317756%28v=vs.85%29.aspx
希望這將
使用佈局文件的頁面幫助嗎? – CR41G14
沒有頁面沒有使用佈局文件 – Prashant16