2015年11月19日 星期四

【WinForm】DataGridView AllowUserToAddRows doesn't work


The empty row we use to add new data at bottom is gone.
本來該出現在 DataGridView  最下面新增用那列不見了

2015年11月3日 星期二

【ASP.NET MVC】JQuery validate parameters rule and customer message not working

// 錯誤示範
$("#form1").validate({
    rules: {
        txtName: "required",
        txtAge: {
            required: true,
            min: 18
        }
    },
    messages: {
        required: "*必填欄位",
        min: jQuery.validator.format("*年齡須大於{0}")
    }
});
在試客戶端驗證時碰到的問題

【C#】Simulate Form Post

昨天朋友問起怎麼用程式模擬填入帳號密碼後按下按鈕後取回頁面的行為,讓我想起我大學第一次查這個議題的時候也是這樣下關鍵字。

模擬動作比較麻煩,實務上這個需求我們是會在程式裡組一個 HTTP POST 送給目標的 action url後同樣在程式裡取回內容。(實際上你在表單填完的東西按下送出,瀏覽器也是幫你把它們組成 HTTP POST 送給 action url,再解析 Server 吐回來的內容成結果畫面給你看)