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
为 ,则 方法根据为应用程序定义的路由返回 ASP.NET 动态数据 GetChildrenPath(String, Object, String) 路径。
可以将 类中定义的值用于 PageAction action
参数。