2
。我想檢索一個查詢字符串參數的值。我如何在Infopath的表單代碼中做到這一點?在InfoPath如何獲得查詢字符串值形成
。我想檢索一個查詢字符串參數的值。我如何在Infopath的表單代碼中做到這一點?在InfoPath如何獲得查詢字符串值形成
幾種解決方案:
來自這兩個環節的InfoPath表單代碼是很容易的URL以信息:
public void FormEvents_Loading(object sender, LoadingEventArgs e)
{
string qryValue = e.InputParameters["MyQueryValue"];
//qryValue would return 1 for the URL "http://www.blabla.com/myform.xsn?MyQueryValue=1"
}