公告版位
沒人的痞客邦﹐我的隨手筆記

目前分類:程設文章 (4)

瀏覽方式: 標題列表 簡短摘要

timeFormat 1.1

Determines the time-text that will be displayed on each event.

{
    // for agendaWeek and agendaDay
    agenda: 'h:mm{ - h:mm}', // 5:00 - 6:30

    // for all other views
    '': 'h(:mm)t'            // 7p
}


h(:mm)t
t代表顯示為 a

銀狐 發表在 痞客邦 留言(0) 人氣()

http://stackoverflow.com/questions/1594958/how-to-access-net-mvc-viewdata-from-jquery-directly

 

 

http://www.billsternberger.net/asp-net-mvc/dynamically-populate-dropdownlist-in-asp-net-mvc/


銀狐 發表在 痞客邦 留言(0) 人氣()

原本跑好好的IIS + Web Service出問題

一開始檢查發現IIS的網站被停止了

重新啟動時﹐發現訊息"程序無法存取檔案 因為檔案正由另一個程序使用"

檢查一下﹐原本開的port被佔用了(lsass.exe)

 

銀狐 發表在 痞客邦 留言(2) 人氣()

使用Linq to SQL時﹐查詢是一件很方便的事


var
product = (from p in dataContext.Products
where p.ProductID == 1
select p).Single();

銀狐 發表在 痞客邦 留言(0) 人氣()