2016年5月24日 星期二

[azure]靜態頁放置在Micrsoft Azure 雲端空間

首先,要先用信用卡註冊一個可使用免費ㄧ個月的帳號
https://azure.microsoft.com/zh-tw/free/


 接著進入azure https://portal.azure.com/ 

點選 +新增 > Web+行動 > Web應用程式
因為範例是放網頁靜態頁 所以我選Web應用程式


填入資料 按建立


設定部屬認證 

這裡填入的帳號密碼,是若使用FTP/Git上傳檔案時使用




發佈網站

回到Visual Studio , 打開欲發行的專案 > 建置 > 發行























發行成功,會自動跳出你發行的網站

網址是 xxx.azurewebsites.net

xxx是你自行填入的應用程式名稱


2016年5月11日 星期三

[JS]判斷瀏覽器 navigator.userAgent

  1. function isMobile() {
  2. // return true;
  3. if (isMobiles.any()) {
  4. return true;
  5. } else {
  6. return false;
  7. }
  8. }
  9.  
  10. var isMobiles = {
  11. Android: function () {
  12. return navigator.userAgent.match(/Android/i);
  13. },
  14. BlackBerry: function () {
  15. return navigator.userAgent.match(/BlackBerry/i);
  16. },
  17. iOS: function () {
  18. return navigator.userAgent.match(/iPhone|iPad|iPod/i);
  19. },
  20. Opera: function () {
  21. return navigator.userAgent.match(/Opera Mini/i);
  22. },
  23. Windows: function () {
  24. return navigator.userAgent.match(/IEMobile/i) || navigator.userAgent.match(/WPDesktop/i);
  25. },
  26. any: function () {
  27. return (isMobiles.Android() || isMobiles.BlackBerry() || isMobiles.iOS() || isMobiles.Opera()
  28. || isMobiles.Windows());
  29. },
  30. FB: function () {
  31. return navigator.userAgent.match(/FB/i);
  32. },
  33. FBIOS: function () {
  34. return navigator.userAgent.match(/FBIOS/i);
  35. }
  36. };
  37.  
  38. function PostFB() {
  39. try {
  40. if (isMobile()) {
  41. shareurl = "https://www.facebook.com/dialog/feed?app_id=' + MyappID
  42. + '&display=touch&caption=Mycaption&link=http%3A%2F%2Fwww.google.com.tw&picture='
  43. + MyPictireLink + '&redirect_uri=' + Myredirect +'&description=Mydescription";
  44. window.open(shareurl);
  45. location.href = 'http://www.google.com';
  46. }
  47. else
  48. {
  49. FB.ui({
  50. method: 'feed',
  51. link: 'http://www.google.com',
  52. caption: '#',
  53. redirect_uri: 'http://www.google.com',
  54. picture: MyPictureLink,
  55. name: 'name',
  56. message: 'message',
  57. description: 'description',
  58. }, function (response) {
  59. if(response == undefined){
  60. //...do something
  61. }
  62. else{
  63. //...do something
  64. }
  65. });
  66. }

[MVC] 簡易分頁 PagedList

1. 先安裝 NuGet套件 - PagedList.Mvc



























2. Controller

  1. using PagedList;
  2. using PageList.Models;

  1. public ActionResult Index(int page =1)
  2. {
  3. //page用來記憶目前是哪一頁
  4. int currentPage = page < 1 ? 1 : page;
  5.  
  6. //資料必須先經過排序
  7. var product = db.Product.Where(x => x.Status == 1).OrderBy(x => x.ID);
  8.  
  9. //分頁資料使用 ToPagedList()
  10. //參數分別是傳入所要分頁的頁碼以及分頁資料量
  11. //此範例就是每一頁會有10筆資料
  12. var PageResult = product.ToPagedList(currentPage, 10);
  13.  
  14. return View(PageResult);
  15. }

3. View
















需要using PagedList.Mvc PagedList

取得分頁:

  1. @Html.PagedListPager((IPagedList)Model, page => Url.Action("Index", new { page = page}))


































  1. //設定PagedListRenderOptions 可更改樣式
  2. @Html.PagedListPager((IPagedList)Model, page => Url.Action("Index", new { page = page})
  3. ,PagedListRenderOptions.MinimalWithPageCountText)



  1. //也可以自由設定顯示物件
  2. @Html.PagedListPager((IPagedList)Model, page => Url.Action("Index", new { page = page}),
  3. new PagedListRenderOptions {
  4. DisplayLinkToIndividualPages=false,
  5. DisplayLinkToFirstPage =PagedListDisplayMode.IfNeeded,
  6. DisplayLinkToLastPage= PagedListDisplayMode.IfNeeded,
  7. DisplayLinkToNextPage = PagedListDisplayMode.IfNeeded,
  8. DisplayLinkToPreviousPage = PagedListDisplayMode.IfNeeded,
  9. DisplayPageCountAndCurrentLocation = true,
  10. PageCountAndCurrentLocationFormat ="第{0}頁 / 共{1}頁"
  11. })









https://github.com/TroyGoode/PagedList

2016年5月5日 星期四

[JS]上傳檔案大小限制

因為沒限制檔案上傳大小
所以發生了一些美麗的誤會~~~ T_T
發了此篇,以謹記在心
  1. var size = document.getElementById("file").files.item(0).size;
  2.  
  3. if (size > 10240000) {
  4. alert("上傳檔案請小於 10M");
  5. return false;
  6. }

2016年5月3日 星期二

[C#][EXIFextractor] Mobile Web 上傳圖片,照片翻轉90度 rotateImage


遇到這種問題 有點傻眼

不知道怎麼解決,測了也沒發現什麼規律性的原因(偏偏我就是拿偏偏我就是用iphone safari)

頓時有了希望全世界都生活在智障型手機的時代是多麼美好,多麼幸福,多麼......方便 ORZ

不過感嘆歸感嘆,希望歸希望,身為21世紀現代人類,還是要追求一下科技進步、社會發展



不用你們提醒我,我知道我現在很難得的正在囉嗦.............

[問題原因] 貌似是瀏覽器吃不到照片的一些tag

這裡有針對IOS詳細介紹照片方向的問題

解決之前 還要加入參考

點我連結下載頁面  進去之後點 Donload Source files

code在這

方便大家 也為了防止頁面被404狙擊 我還是備份一下



  1. HttpPostedFile file = HttpContext.Current.Request.Files["file"];
  2. //Create bitmap image from posted file
  3. System.Drawing.Bitmap bmpImg = new System.Drawing.Bitmap(file.InputStream);
  4. //rotate if needed
  5. bmpImg = rotateImage(bmpImg);
  6. //save image
  7. targetFilePath = "somewhere...";
  8. bmpImg.Save(targetFilePath, ImageFormat.Jpeg);
  1. public Bitmap rotateImage(System.Drawing.Bitmap img)
  2. {
  3. try
  4. {
  5. RotateFlipType rft = RotateFlipType.RotateNoneFlipNone;
  6. System.Drawing.Imaging.PropertyItem[] properties = img.PropertyItems;
  7. foreach (System.Drawing.Imaging.PropertyItem p in properties)
  8. {
  9. if (p.Id == 274 || p.Id == 5029)
  10. {
  11. short orientation = BitConverter.ToInt16(p.Value, 0);
  12. switch (orientation)
  13. {
  14. case 1:
  15. rft = RotateFlipType.RotateNoneFlipNone;
  16. break;
  17. case 3:
  18. rft = RotateFlipType.Rotate180FlipNone;
  19. break;
  20. case 6:
  21. rft = RotateFlipType.Rotate90FlipNone;
  22. break;
  23. case 8:
  24. rft = RotateFlipType.Rotate270FlipNone;
  25. break;
  26. }
  27. }
  28. }
  29. if (rft != RotateFlipType.RotateNoneFlipNone)
  30. {
  31. img.RotateFlip(rft);
  32. }
  33. }
  34. catch
  35. {
  36.  
  37. }
  38. return img;
  39. }
  40.