共用方式為


RouteValueExpressionBuilder.GetRouteValue(Page, String, Type, String) 方法

定義

擷取對應至所指定 URL 參數的值。

public:
 static System::Object ^ GetRouteValue(System::Web::UI::Page ^ page, System::String ^ key, Type ^ controlType, System::String ^ propertyName);
public static object GetRouteValue (System.Web.UI.Page page, string key, Type controlType, string propertyName);
static member GetRouteValue : System.Web.UI.Page * string * Type * string -> obj
Public Shared Function GetRouteValue (page As Page, key As String, controlType As Type, propertyName As String) As Object

參數

page
Page

目前的頁面。

key
String

URL 參數。

controlType
Type

與運算式繫結的控制項型別。

propertyName
String

運算式正在設定的屬性名稱。

傳回

對應至針對目前頁面所指定 URL 參數的值。 如果 page 不是 nullpageRouteData 屬性為 null,或者 key 是空的或 null,則方法會傳回 null

備註

這個方法會使用 RouteDatapage屬性,擷取指定key值的適當值。 然後,它會使用 controlTypepropertyName 值來尋找適當的類型轉換器,以便將擷取的值轉換成正確的類型。

適用於

另請參閱