UWInfo Blog
發表新文章
[Join]
|
[忘記密碼]
|
[Login]
搜尋
搜尋意見
文章分類-#Author#
[所有文章分類]
所有文章分類
ASP.NET (48)
ASP.NET2.0 (15)
ASP.NET4.0 (33)
JavaScript (49)
jQuery (26)
FireFox (4)
UW系統設定 (3)
SQL (39)
SQL 2008 (25)
mirror (4)
SVN (4)
IE (9)
IIS (19)
IIS6 (1)
閒聊 (7)
W3C (6)
作業系統 (9)
C# (22)
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 (1)
開發工具 (6)
JSON (1)
Excel2007 (1)
試題 (3)
LINQ (1)
bootstrap (0)
Vue (3)
IIS7 (2)
foodpanda (2)
編碼 (2)
資安 (3)
Sourcetree (1)
MAUI (1)
CMD (1)
最新回應
IIS 配合 AD (Active Directory) 認証, 使用 .Net 6.0
太感謝你了~~~你救了我被windows 認證卡了好幾天QQ...
more
PostgreSQL 的 monitor trigger
FOR EACH ROW 可能要改為 FOR EACH STATEMENT ...
more
[錯誤訊息] 請加入 ScriptResourceMapping 命名的 jquery (區分大小寫)
efefef...
more
用 Javascript 跨網頁讀取 cookie (Cookie cross page, path of cookie)
;;;;...
more
匯出 let's encryption的憑証
1. win-acme 選擇 A: Manage renewals找到你要轉移的憑證名稱和密碼2. ...
more
dotnet ef dbcontext scaffold
更新到最新版的 dotnet-ef tooldotnet tool update --global ...
more
dotnet ef dbcontext scaffold
還需要這個:Microsoft.EntityFrameworkCore.Design...
more
dotnet ef dbcontext scaffold
指定版本:dotnet add package Microsoft.EntityFrameworkC...
more
資安問題 -- 存入 DB 後顯示內容
伺服器隱碼問題1 寫入DB前不是當成字串就執行某些事情 (某些server 漏洞? 許功蓋?)2 寫...
more
匯出 let's encryption的憑証
【注意】要打開 win-acme <<這個軟體匯出憑證...
more
標籤
sp_
sql
ip[t]
workbench
web.
.
ad
sing
image
ses
batch
dxhizbma
console
mirrot
XML
server
8468
C
檔案命名
662
Line
200
0
javascript
jquery
web
client
aspx ORDER
754
[U2]
Data
sqldepen
div
submit
sa
8
58
錯誤碼為 -2146
@@casZ6
專案 UNION A
20
8308
JQ
[t]
Find
aspx
202
358
-2391 UNIO
14
搜尋 執行緒 結果:
無法產生 ActiveX 控制項 '8856f961-340a-11d0-a96b-00c04fd705a2',因為目前的執行緒不是在單一執行緒 Apartment
C# PrintScreen to file
出現錯誤:
無法產生 ActiveX 控制項 '8856f961-340a-11d0-a96b-00c04fd705a2',因為目前的執行緒不是在單一執行緒 Apartment。
解決方法:
@Page 加上 AspCompat="true" 即可。
強迫網頁由 STA 執行緒集區服務
More...
Reiko
, 2020/9/4 上午 11:54:39
SQL Server 查詢某個使用者的所有執行緒 (連線)
刪除使用者, 出現 "無法卸除目前使用者已登入的登入" 時, 可以用以下的指令查該 user 的執行緒
sp_who 'sa2'
再用 kill 指令刪除執行緒..
More...
Bike
, 2019/6/6 下午 04:04:46
中文難字的繁簡轉換處理
看到黑暗有一個關於中文難字的繁簡轉換處理的文章, 先記錄部份在這裡.
http://blog.darkthread.net/post-2015-03-06-strconv-half-full-width-notes.aspx
var ncrString = toNCR("黑暗執行緒犇ABC123");
Debug.WriteLine(ncrString); //黑暗執行緒犇ABC123
var convString = Microsoft.VisualBasic.Strings.StrConv(
ncrString, Microsoft.VisualBasic.VbStrConv.Narrow, 1028);
Debug.WriteLine(convString); //黑暗执行绪犇ABC123
var resultString = fromNCR(convString);
Debug.WriteLine(resultString); //黑暗执行绪犇ABC123
static string toNCR(string input)
{
StringBuilder sb = new StringBuilder();
Encoding big5 = Encoding.GetEncoding("big5");
foreach (char c in input)
{
//強迫轉碼成Big5,看會不會變成問號
string cInBig5 = big5.GetString(big5.GetBytes(new char[] {c}));
//原來不是問號,轉碼後變問號,判定為難字
if (c!='?' && cInBig5=="?")
sb.AppendFormat("&#{0};", Convert.ToInt32(c));
else
sb.Append(c);
}
return sb.ToString();
}
static string fromNCR(string input)
{
return Regex.Replace(input, "&#(?<ncr>\\d+?);", (m) =>
{
return Convert.ToChar(int.Parse(m.Groups["ncr"].Value)).ToString();
});
}
More...
Bike
, 2016/11/21 下午 12:40:54