DynamicDataRoute(String) 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
使用指定的 URL 模式,初始化 DynamicDataRoute 類別 (Class) 的新執行個體 (Instance)。
public:
DynamicDataRoute(System::String ^ url);
public DynamicDataRoute (string url);
new System.Web.DynamicData.DynamicDataRoute : string -> System.Web.DynamicData.DynamicDataRoute
Public Sub New (url As String)
參數
- url
- String
URL 的模式。
備註
一般來說,您會使用替代參數指定動態資料將建立的 Url。 例如,如果您傳遞字串 "{table}/{action}",則當您使用 ListDetails 動作來查看 Product 資料表時,結果會是 URL "~/Products/ListDetails.aspx"。
不需要使用替代參數。 您可以傳遞字串 "Table/DynamicData",這會產生 " ~ /Table/DynamicData.aspx"。 您可以傳遞 "MyPageName" 來產生 " ~ /MyPageName.aspx"。 動態資料不會依賴 URL 來決定資料表和動作資訊。