C winform post請求資料

2021-09-08 17:54:55 字數 822 閱讀 8365

其原理是,利用winfrom模擬表單提交資料,將要提交的引數提交給網頁,網頁執行**,得到資料,然後winform程式將網頁的所有源**讀取下來,這樣就達到windows應用程式和web應用程式之間傳參和現實資料的效果了。 ­

首先建立乙個windows應用程式和web應用程式。 ­

在web應用程式中,將網頁切換到源**並把源**中一些沒用的**刪掉,只保留頭部,在windows應用程式讀取網頁原始碼時,這些都會被一起讀下來,但這些都是沒用的資料,而且刪掉沒什麼影響。需要保留的**如下: ­

<%@ page language="c#" autoeventwireup="true"  codefile="default.aspx.cs" inherits="_default" %> ­

然後在page_load中實現功能,以下為乙個將兩個數相加並將和返回給winform的網頁例子。 ­

string a = request.form["

a"].tostring();//

由winform中傳給網頁的引數用a標識 ­

string b = request.form["b"

].tostring(); ­

int c = convert.toint32(a) +convert.toint32(b); ­

response.write(c.tostring());

//將資料寫到網頁中 ­

在winform中實現傳參的例子**如下: ­

private

void button1_click(object

sender, eventargs e) ­

­

C winform post請求資料

其原理是,利用winfrom模擬表單提交資料,將要提交的引數提交給網頁,網頁執行 得到資料,然後winform程式將網頁的所有源 讀取下來,這樣就達到windows應用程式和web應用程式之間傳參和現實資料的效果了。首先建立乙個windows應用程式和web應用程式。在web應用程式中,將網頁切換到...

PHPcurl請求資料

php curl post請求和get請求 獲取的引數 api key 8a82d53a57b06c1d835d129f7e43d49c ordernum pdo fetch select ddlm order no from tablename ewei shop order where id g...

angular請求資料

get請求import from angular common http 2 在元件中引入模組並宣告 constructor private http httpclient 3 呼叫函式 ngoninit post請求import from angular common http 2 在元件中引入模...