ログインに EmpID と 2 つのパスワードを必要とする職場のコンピューター サーバーがあります。ログイン画面のソースを保存し、自分の情報 (EmpID、Password1、Password2) を含む各フィールドの value= をハードコーディングできます。このファイルを開いて [ログイン] ボタンを押すと、value= の情報が使用されます。ログインボタンを押す必要がないように、行をストリーム化しようとしているだけで、Android App Inventor で作成しているアプリでこのファイルを使用できます。
ファイルを開くときにこれを送信したいと思います。ログインボタンを押す必要がありません。を変更する方法はありますか
input type="submit" name="ctl01$mHolder$CmdLogin" value=" Login " onclick=
onclickの代わりにファイルを開くときに送信するものに?助言がありますか?
ありがとう!!!
これが私の作業サーバーからの HTML ソースです。サーバーのアドレスと EmpID とパスワードを変更しました...
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
</head>
<body>
<form name="aspnetForm" method="post" action="https://my.work.com/Default.aspx" onsubmit="javascript:return WebForm_OnSubmit();" id="aspnetForm">
<div>
<input type="hidden" name="__LASTFOCUS" id="__LASTFOCUS" value="" />
<input type="hidden" name="__EVENTTARGET".__EVENTTARGET.value = eventTarget; theForm.__EVENTARGUMENT.value = eventArgument;
<div class="loginOuterStyle">
<div class="ie5borderfix">
<div class="formHeader"> </div>
<div class="formContent">
<div class="contentHeader"> </div>
<div class="contentArea">
<div class="validateErrorSummary">
<div id="ctl01_mHolder_validateErrorSummary" style="color:Red;display:none;">
</div>
<form>
<table id="ctl01_mHolder_LoginTable" class="formTable">
<tr class="formHeader">
<td class="formCell">
<div class="empID">
<label>Login ID:</label>
<div class="inputItem">
<input name="ctl01$mHolder$txtUserID" type="text" maxlength="5" id="ctl01_mHolder_txtUserID" VALUE="MyEmpID" class="inputField" size="15" />
<span id="ctl01_mHolder_txtUserIDRfValidator" style="color:Red;display:none;"></span>
<span id="ctl01_mHolder_txtUserIDReValidator" style="color:Red;display:none;"></span>
</div>
</div>
<div class="coPassword">
<label>CO Password:</label>
<div class="inputItem">
<input name="ctl01$mHolder$txtUserESCPassword" type="password" maxlength="50" id="ctl01_mHolder_txtUserESCPassword" VALUE="111111" class="inputField" size="15" />
<span id="ctl01_mHolder_txtUserESCPasswordRfValidator" style="color:Red;display:none;"></span>
<span id="ctl01_mHolder_txtUserESCPasswordReValidator" style="color:Red;display:none;"></span>
</div>
</div>
<div class="ccsPassword">
<label>CCS Password:</label>
<div class="inputItem">
<input name="ctl01$mHolder$txtUserPassword" type="password" maxlength="8" id="ctl01_mHolder_txtUserPassword" VALUE="222222" class="inputField" size="15" />
<span id="ctl01_mHolder_txtUserPasswordRfValidator" style="color:Red;display:none;"></span>
<span id="ctl01_mHolder_txtUserPasswordReValidator" style="color:Red;display:none;"></span>
</div>
</div>
<div class="contentSubmit">
<input type="submit" name="ctl01$mHolder$CmdLogin" value=" Login " onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl01$mHolder$CmdLogin", "", true, "LoginGroup", "", false, false))" id="ctl01_mHolder_CmdLogin" />
</div>
<div class=WordSection1></form></div>
</body>
</html>