c# code?1
2345
routes.maproute(
"newquerytest.asp"
,
"newquerytest.asp"
,
new
);
如上在路由設定中,增加如上設定解析路徑
直接從iis中預覽頁面http://localhost:4093/newquerytest.asp會成功解析http://localhost:4093/article/xml中的內容顯示到頁面上,但是在iis中預覽的時候出現了404錯誤。
請求解決方案。。。(初步認為是iis需要設定)
。。。。。。
找到問題了,iis配置中確認檔案是否存在的選項,我勾選了。
mvc 路由偽靜態實現
很多 都採用偽靜態,例如以html shtml等結尾的url,mvc的路由可以輕鬆實現。mvc的路由原理是從上往下匹配的,所以只需要在後面新增自己配置的路由即可 public static void registerroutes routecollection routes axd routes.m...
mvc 路由偽靜態實現
很多 都採用偽靜態,例如以html shtml等結尾的url,mvc的路由可以輕鬆實現。mvc的路由原理是從上往下匹配的,所以只需要在後面新增自己配置的路由即可 public static void registerroutes routecollection routes axd routes.m...
mvc3路由設定
一 使用預設值的路由 配置預設的引數,當輸入http localhost 4016 home時,就會顯示home index,當然可以定義兩個引數 如果http localhost 4016 home index page 1是有效的 如果是http localhost 4016 home inde...