其中有一段为:
Visual Basic 
OverLoads Public Function Transfer( _
ByVal path As String, _
ByVal preserveForm As Boolean _
) As Void
 C# 
public void Transfer(
string path, 
bool preserveForm
);
 
C++ 
public: void Transfer(
String path, 
bool preserveForm
);
 
J# 
J# syntax will be included in future releases.
 
JScript 
public function Transfer(
 path : String, 
 preserveForm : Boolean
) : Void;
 
Parameters
path
The URL path of the new page on the server to execute. preserveForm
If true, the QueryString and Form collections are preserved. If false, they are cleared. The default is false. 但不知在目标页面中如何调用原页面的form和querystring,哪位能给个完整的页面代码?