J
Jackal
I have a form page(abc.aspx) that contains some fields need to be filled in
before submitting,
and the action of the form is "def.aspx". After peocessing the filled-in
data, it'll return the result.
Is there any chance I could get the result by programming?
[Original Process]
Fill in data on "abc.aspx" --> Submit --> "def.aspx" requests the data -->
Processing --> Returns the result to "abc.aspx"
[Desired Process]
Send WebRequest to "def.aspx"(e.g.
WebRequest.Create("http://server/def.aspx?Type=AUTH&OrderNo=0001"))
--> Processing --> Returns the result to "abc.aspx"
Any idea?
Any suggestion is appreciated
before submitting,
and the action of the form is "def.aspx". After peocessing the filled-in
data, it'll return the result.
Is there any chance I could get the result by programming?
[Original Process]
Fill in data on "abc.aspx" --> Submit --> "def.aspx" requests the data -->
Processing --> Returns the result to "abc.aspx"
[Desired Process]
Send WebRequest to "def.aspx"(e.g.
WebRequest.Create("http://server/def.aspx?Type=AUTH&OrderNo=0001"))
--> Processing --> Returns the result to "abc.aspx"
Any idea?
Any suggestion is appreciated