2017年5月31日 星期三

【ASP.NET Webform】Invalid postback or callback argument. Event validation is enabled using in configuration...

在自己用 JQuery Ajax 去改 DropDownList 內容後,postback 就噴
Invalid postback or callback argument. Event validation is enabled using in configuration or <%@ Page EnableEventValidation="true" %> in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If the data is valid and expected, use the ClientScriptManager.RegisterForEventValidation method in order to register the postback or callback data for validation.

【JQuery】Uncaught TypeError: Cannot use 'in' operator to search for 'length'

在 input select ajax 取回 json 要轉成 options 時噴
Uncaught TypeError: Cannot use 'in' operator to search for 'length'

2017年5月30日 星期二

2017年5月28日 星期日

【ASP.NET MVC】Encountered an unexpected error when attempting to resolve tag helper directive '@addTagHelper' ...

在 MVC Controllers 加入 具有檢視、使用 Entity Framework 的 MVC 5 控制器,View 端噴錯噴得亂七八糟的,但要是按執行還是很神奇的可以跑起來。

Encountered an unexpected error when attempting to resolve tag helper directive '@addTagHelper' with value 'Microsoft.AspNet.Mvc.Razor.TagHelpers.UrlResolutionTagHelper, Microsoft.AspNet.Mvc.Razor'. Error: Object reference not set to an instance of an object

The type or namespace name 'AspNet' does not exist in the namespace 'Microsoft' after add controller with view

The type or namespace name 'Mvc' does not exist in the namespace 'Microsoft.AspNet' (are you missing an assembly reference?)

還有
'_Page_views_home_index_cshtml.ExecuteAsync()': no suitable method found to override

【Entity framework】Code First - Restart from a previous migration

放棄一部分的 migrations 並從特定一版重來。

2017年5月27日 星期六

2017年5月18日 星期四

2017年5月14日 星期日

【DB】Auto increment run out of int

今天在查資料時候突然想到,大學第一次學主鍵自動增值的一個疑問
如果自動增值把 int 用完了怎麼辦?