UWInfo Blog
發表新文章
[Join]
|
[忘記密碼]
|
[Login]
搜尋
搜尋意見
文章分類-choco
[所有文章分類]
ASP.NET (3)
ASP.NET2.0 (3)
ASP.NET4.0 (3)
JavaScript (0)
jQuery (1)
FireFox (0)
UW系統設定 (0)
SQL (2)
SQL 2008 (1)
mirror (0)
SVN (0)
IE (0)
IIS (0)
IIS6 (0)
閒聊 (0)
W3C (0)
作業系統 (0)
C# (0)
CSS (1)
FileServer (0)
HTML 5 (0)
CKEditor (0)
UW.dll (0)
Visual Studio (3)
Browser (0)
SEO (0)
Google Apps (0)
網站輔助系統 (0)
DNS (0)
SMTP (0)
網管 (0)
社群API (0)
SSL (0)
App_Inventor (0)
URLRewrite (0)
開發工具 (0)
JSON (0)
Excel2007 (0)
試題 (0)
LINQ (0)
bootstrap (0)
Vue (0)
IIS7 (0)
foodpanda (2)
編碼 (0)
資安 (0)
Sourcetree (1)
MAUI (0)
CMD (0)
my sql (0)
所有文章分類
[choco的分類]
ASP.NET (48)
ASP.NET2.0 (15)
ASP.NET4.0 (34)
JavaScript (49)
jQuery (26)
FireFox (4)
UW系統設定 (3)
SQL (39)
SQL 2008 (25)
mirror (4)
SVN (4)
IE (9)
IIS (20)
IIS6 (1)
閒聊 (7)
W3C (6)
作業系統 (9)
C# (24)
CSS (12)
FileServer (1)
HTML 5 (11)
CKEditor (3)
UW.dll (13)
Visual Studio (16)
Browser (8)
SEO (1)
Google Apps (3)
網站輔助系統 (4)
DNS (5)
SMTP (4)
網管 (11)
社群API (3)
SSL (4)
App_Inventor (1)
URLRewrite (2)
開發工具 (6)
JSON (1)
Excel2007 (1)
試題 (3)
LINQ (1)
bootstrap (0)
Vue (3)
IIS7 (3)
foodpanda (2)
編碼 (2)
資安 (3)
Sourcetree (1)
MAUI (1)
CMD (1)
my sql (1)
最新回應
[ASP.NET] 利用 aspnet_regiis 加密 web.config
...
more
[錯誤訊息] 請加入 ScriptResourceMapping 命名的 jquery (區分大小寫)
...
more
[錯誤訊息] 請加入 ScriptResourceMapping 命名的 jquery (區分大小寫)
efefef...
more
[ASP.NET] 利用 aspnet_regiis 加密 web.config
我試了一下, 要用管理員權限執行 cmd 才成功....
more
標籤
20
ashx
問題
aspx
8
net
visualsvn
.net
C
NxFRfXz6
0
a
en
html
tls
HTTP 錯誤 50
EN ORDER B
16
Certificat
150
validateco
aspnet_reg
3072
Xml
orm
2981
1
fredck.fck
visual
javascript
WU
window
黑貓 EGS
uw
12
ip[t]
安裝
code
916
date[t] OR
GN
204
if
bluk
856
ti
安全性
jquery[t]
Exception
按鈕
搜尋 結果:
Framework未安裝, 但實際上已經安裝
下載Runtime版本打開後出現, 【這部電腦已經安裝 .NET Framework 4.6.2 (含) 以上版本的更新】
後來下載Developer Pack版本安裝完畢後就可以了
https://dotnet.microsoft.com/download/dotnet-framework/net462
More...
choco
, 2021/8/23 下午 02:28:48
[錯誤訊息] 請加入 ScriptResourceMapping 命名的 jquery (區分大小寫)
錯誤訊息:
WebForms UnobtrusiveValidationMode 需要 'jquery' 的 ScriptResourceMapping。請加入 ScriptResourceMapping 命名的 jquery (區分大小寫)。
解決方式:
在有用 validation 那頁的 Page_Load 加上,就恢復正常了
protected void Page_Load(object sender, EventArgs e)
{
UnobtrusiveValidationMode = UnobtrusiveValidationMode.None;
}
參考來源:
https://blog.xuite.net/tolarku/blog/63451508-VS+2012+%E5%88%9D%E9%AB%94%E9%A9%97+-+%E9%9C%80%E8%A6%81+%27jquery%27+%E7%9A%84+ScriptResourceMapping+%E9%8C%AF%E8%AA%A4
https://www.c-sharpcorner.com/UploadFile/cd7c2e/enabling-unobtrusive-validation-mode-in-Asp-Net-4-5/
More...
choco
, 2019/7/9 上午 09:37:20
[ASP.NET] 利用 aspnet_regiis 加密 web.config
請用系統管理員身分
開啟 cmd.exe
cd C:\Windows\Microsoft.Net\Framework\v2.0.50727
aspnet_regiis -pef "connectionStrings" "專案路徑"
aspnet_regiis -pef "appSettings" "專案路徑"
* 若出現 'aspnet_regiis' 不是內部或外部命令,可執行的程式或批次檔
先確認iis上專案的Framework版本
cd C:\Windows\Microsoft.Net\Framework\該版本的資料夾
若為v4.0.30319
cd C:\Windows\Microsoft.Net\Framework\v4.0.30319
應該就成功了
---------------------------------------
解密的部分
aspnet_regiis -pdf "connectionStrings" "專案路徑"
aspnet_regiis -pdf "appSettings" "專案路徑"
More...
choco
, 2019/5/24 下午 07:06:03