asp 求助 从一个程序自动进入另一个程序
各位大侠 我是新手 现在想从一个程序自动进入另一个程序里 --------------------编程问答-------------------- 那你就把一段代码写入另一段代码代码中。 --------------------编程问答-------------------- 能不能给个参照的代码 我是想在我的OA系统中增加一个按钮 然后通过点击这个按钮 自动登录到我的另外一个OA中目的OA的事件代码是
protected void imgLogin_ServerClick(object sender, ImageClickEventArgs e)
{
Response.Write(Tiannuo.Web.JavaScript.Alert(true, "来点我呀!"));
SetMessage("");
string userID = this.TextBoxUsername.Value;
string pwd = this.TextBoxPassword.Value;
string userIDt = "admin";
string pwdt = "321";
if (userID == "")
{
Login(userIDt, pwdt, null);
}
else
{
Login(userID, pwd, null);
}
} --------------------编程问答--------------------
能不能给点代码参照下啊
--------------------编程问答-------------------- 我觉得你要的应该是这种效果,你贴进去试试看看再说,
--------------------编程问答--------------------
<script type="text/javascript">
var i = 20;
intervalid = setInterval("fun()", 1000);
function fun() {
if (i == 0) {
window.location.href = "List.aspx";
//window.location.href = "javascript:history.go(-1);";
clearInterval(intervalid);
}
document.getElementById("mes").innerHTML = "倒计时" + "[" + i + "]"+"返回列表";
i--;
}
</script>
body里的A标签
<a id="mes" href="javascript:history.go(-1);" class="btn_all"></a>
window.location.href = "http://127.0.0.1/demoV35/";
这段代码我改成这样 连接到界面但是 没有触发界面上的登陆按钮 请问这个自动触发按钮的应该怎么做啊 --------------------编程问答-------------------- 直接在你的新的网站的登录界面中,将登录表单的action指向你的另一个oa中的登录提交页面。
补充:.NET技术 , ASP.NET