Monthly Archives: December 2011

Some interesting articles

http://www.bnext.com.tw/article/view/cid/0/id/18789 http://www.netadmin.com.tw/article_content.aspx?sn=1106160006 http://www.zdnet.com/blog/virtualization/what-is-a-trusted-cloud/978 http://www.trustedcomputinggroup.org/files/resource_files/1F4DEE3D-1A4B-B294-D0AD0742BA449E07/Cloud%20Computing%20and%20Security%20Whitepaper_July29.2010.pdf http://www.safenet-inc.com/products/data-protection/data-encryption-control/datasecure/

Posted in cloud computing, 學術, 學術研究, 資訊安全 | Leave a comment

[ASP.NET] [網摘] 使用JSON.NET處理動態物件屬性

就如同Json.NET官網的解說:”Json.NET is a popular high-performance JSON framework for .NET”。而黑暗執行緒 網站也為它介紹了這麼一段話:”一個極為出色的Open Source JSON解決方案,提供了如同JavaScriptSerializer序列化及反序列化JSON字串的功能,甚至支援LINQ式操作,最重要的是它可透過JObject的物件模型支援”動態物件”,解決類別屬性不固定的問題。” 因此,若大家有興趣的話,可以到這邊看看,黑暗執行緒網站怎麼以簡單的範例帶我們了解JSON.NET如何支援動態物件吧!

Posted in ajax, ASP.NET, C, jQuery, 程式設計, 網頁撰寫 | Leave a comment

[ASP.NET] 在MVC 3上包JSON物件,送給Controller的方法

大家搞了好久才知道怎麼做。感謝Shawn的提供,我來筆記一下:)根據 Posting JSON Data to an ASP.net MVC 3 Web Application 的解說,我們只要輸入透過ajax等技術,把要抓取的Web物件,封裝好後,丟給後端的MVC Controller協助處理就好囉。程式碼大概長成下面這樣: 若想進一步研究,我有以下三個不錯的連結提供給各位:1. http://social.msdn.microsoft.com/Forums/zh-TW/236/thread/0ab6d592-8ded-4b34-a396-229c319b54ee2. http://stackoverflow.com/questions/309115/how-can-i-post-an-array-of-string-to-asp-net-mvc-controller-without-a-form3. http://stackoverflow.com/questions/5251992/using-jquery-post-for-mvc-3-not-working-when-deployed

Posted in ajax, ASP.NET, jQuery, 程式設計, 網頁撰寫 | Leave a comment