2013年3月12日

USING ROUTING WITH WEB FORMS

摘要: routes.MapPageRoute("product-search", "albums/search/{term}", "~/aspx/AlbumSearch.aspx"); routes.MapRoute( "Default", // Route name "{controller}/{action}/{id}", // URL with parameters new { controller = "Home", action = "Index", 阅读全文

posted @ 2013-03-12 14:16 fishyk 阅读(162) 评论(0) 推荐(0)

CUSTOM ROUTE CONSTRAINTS

摘要: routes.MapRoute(“name”, “{controller}”, null, new {httpMethod = new HttpMethodConstraint(“GET”)} ); 阅读全文

posted @ 2013-03-12 13:45 fishyk 阅读(137) 评论(0) 推荐(0)

Retrieve Path

摘要: Retrieve the path to the Documents directoru:NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES);NSString *... 阅读全文

posted @ 2013-03-12 02:02 fishyk 阅读(184) 评论(0) 推荐(0)

导航