私はphpで書かれた登録ページを持っています。
asp.net Webページの投稿から受け取った情報でアカウントを自動的に作成するために、phpWebページに送信する必要のある必要な情報を含むWebページをasp.netで作成したいと思います。
そこで、asp.netWebページからphpページに新しい情報を投稿したいと思います。
php登録ページは次のようになります。
<form action="" type=post>
<label for="name"><div><br>Account</br></div></label> <input type=text id="name" name="account" size=20 maxlength=32 /><br>
<label for="name"><div><br>Password</br></div></label> <input type=password id="name" name="password" size=20 maxlength=14 /><br>
<button type=submit>Okay</button>
</form>