http://www.test.com/test.aspx?testinfo=&|&
&をテーブルの値に置き換えようとしています。私は2つのパラメーターとして名前と年齢を取得しました。これらを置き換えて、次のようなURLを取得する必要があります。
http://www.test.com/test.aspx?testinfo=name|age
URLを置き換える3つの文字列パラメータがある場合:
http://www.test.com/test.aspx?testinfo=&|&
上記のURLのViz名、年齢、住所:
http://www.test.com/test.aspx?testinfo=name|age|address
string URL=string.Empty;
URL=http://www.test.com/test.aspx?testinfo=&|&;
//in this case fieldsCount is 2, ie. name and age
for(int i=0; i<fieldsCount.Length-1;i++)
{
URL.Replace("*","name");
}
「年齢」を追加して取得するにはどうすればよいですか?任意の入力が役立ちます。
http://www.test.com/test.aspx?testinfo=name|age