///
/// 新增js引用
///
///
/// 相對路徑 應用程式根目錄 /js/main.js
///
public static mvchtmlstring renderjs(this htmlhelper helper, params string paths)
var relativepath = string.concat(commonhelp.catalog, item);
relativepath = string.concat(relativepath, "?_t=", getlastaccesstime(relativepath));}}
return new mvchtmlstring(builder.tostring());
}///
/// 新增指定目錄下js引用
///
///
/// 相對目錄
/// 完整檔名 main.js
///
public static mvchtmlstring rendercatalogjs(this htmlhelper helper, string catalog, params string files)
return new mvchtmlstring(string.empty);
}///
/// 新增css引用
///
///
/// 相對路徑 應用程式根目錄 /css/main.css
///
public static mvchtmlstring rendercss(this htmlhelper helper, params string path)
var relativepath = string.concat(commonhelp.catalog, item);
relativepath = string.concat(relativepath, "?_t=", getlastaccesstime(relativepath));}}
return new mvchtmlstring(builder.tostring());
}///
/// 新增指定目錄下css引用
///
///
/// 相對目錄
/// 完整檔名 main.css
///
public static mvchtmlstring rendercatalogcss(this htmlhelper helper, string catalog, params string files)
return new mvchtmlstring(string.empty);
}///
/// 獲取檔案最新寫時間
///
/// 相對路徑
/// 最新寫時間
private static string getlastaccesstime(string path)
return result;
}
MVC擴充套件HttpHandler
擴充套件用來做防盜煉 訪問特殊字尾名的處理方式 比如 這樣乙個位址 並不是直接訪問伺服器的物理路徑 會根據字尾名 找到當前字尾的處理程式 進行處理 所有字尾為.config的都由httpforbiddenhandler處理 字尾為這個的很安全 別人都是訪問不到的 通過這個 可以自己擴充套件一些特殊字...
mvc的擴充套件1
所以在我們需要配置的時候就不用去找單獨的檔案了。1.首先呢我們現在lib檔案裡面建立乙個conf.php 首先我們要理清我們的思路,首先是 1.判斷配置檔案是否存在。2.判斷配置是否存在。3.快取配置。把思路理清之後就開始寫 了 static public conf array static pub...
MVC5擴充套件方法
html.partial和html.renderpartial用法 html.partial和renderpartial的用法與區別 輸出方式 html.partial和renderpartial都是輸出html片段,區別在於 partial是將檢視內容直接生成乙個字串並返回 相當於有個轉義的過程 ...