問題タブ [routedata]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
c# - How to access QueryString parametr if I use Routing
I use ASP.NET Routing for pretty URLs, but I cant access QueryStringParameters (only RouteData value). I am using the routing with Web Forms.
Here is example of my RegisterRoutes (Global.asax):
I use this code for accessing parameter "step" in Catalog.aspx page:
But it returns null.
How can I access QueryString parameter "step" if I don't want toget it from RouteData?
asp.net-mvc - URLでコントローラーを呼び出してデフォルトアクションにルーティング/リダイレクトしますか?
URL : localhost:4835/ログイン
アクションの名前に言及せずにインデックスを呼び出したい。
asp.net-web-api - Web API: HttpContext からアクション属性とパラメーターを読み取る方法
通常のクラスでは、 から以下を読む必要がありますHttpContext
。
コントローラーとアクション名
アクションの属性 (私はそれを得ることができまし
HttpActionContext.ActionDescriptor.GetCustomAttributes<type>()
たが、ここでは持っていませんHttpActionContext
- 私は持っているだけですHttpContext
)引数を読み取ります ( のよう
actionContext.ActionArguments["paramName"]
に、しかし再び - 私は しか持っていませんHttpContext
)
これはアクション フィルターではなく、コントローラー クラスでもありません。しかし、私はアクセスできますHttpContext
。