MetaChildrenColumn.GetChildrenPath 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得子資料表的指定動作頁面路徑。
多載
GetChildrenPath(String, Object) |
取得子資料表的指定動作頁面路徑。 |
GetChildrenPath(String, Object, String) |
取得子資料表的指定動作頁面路徑。 |
GetChildrenPath(String, Object)
取得子資料表的指定動作頁面路徑。
public:
System::String ^ GetChildrenPath(System::String ^ action, System::Object ^ row);
public:
virtual System::String ^ GetChildrenPath(System::String ^ action, System::Object ^ row);
public string GetChildrenPath (string action, object row);
member this.GetChildrenPath : string * obj -> string
abstract member GetChildrenPath : string * obj -> string
override this.GetChildrenPath : string * obj -> string
Public Function GetChildrenPath (action As String, row As Object) As String
參數
- action
- String
目標動作。
- row
- Object
包含外部索引鍵欄位的資料列。
傳回
子資料表的指定動作頁面路徑。
備註
方法會傳回 GetChildrenPath(String, Object) 子資料工作表中指定之動作頁面的路徑。 傳回的路徑是以針對 ASP.NET 動態資料應用程式所定義的路由為基礎,而且具有指定的資料列做為父系。 路徑的取得方式是將查詢字串值附加至 URL,其中包含參數中所指定的外鍵域值 row
。
如果 row
為 null
,則這個方法會傳回空字串。
您可以使用類別中針對參數定義的值 PageAction action
。
另請參閱
適用於
GetChildrenPath(String, Object, String)
取得子資料表的指定動作頁面路徑。
public:
System::String ^ GetChildrenPath(System::String ^ action, System::Object ^ row, System::String ^ path);
public:
virtual System::String ^ GetChildrenPath(System::String ^ action, System::Object ^ row, System::String ^ path);
public string GetChildrenPath (string action, object row, string path);
member this.GetChildrenPath : string * obj * string -> string
abstract member GetChildrenPath : string * obj * string -> string
override this.GetChildrenPath : string * obj * string -> string
Public Function GetChildrenPath (action As String, row As Object, path As String) As String
參數
- action
- String
目標動作。
- row
- Object
包含外部索引鍵欄位的資料列。
- path
- String
目標頁面。
傳回
子資料表的指定動作頁面路徑。
備註
方法會傳回 GetChildrenPath(String, Object, String) 子資料工作表中指定之動作頁面的路徑。 路徑是以指定的資料列做為父系的指定路徑為基礎。 路徑的取得方式是將查詢字串值附加至 URL,其中包含參數中所指定的外鍵域值 row
。
如果 row
為 null
,則這個方法會傳回空字串。 如果 path
為 null
,則 GetChildrenPath(String, Object, String) 方法會根據針對 ASP.NET 動態資料應用程式所定義的路由來傳回路徑。
您可以使用類別中針對參數定義的值 PageAction action
。