我有以下按钮代码和设置让用户谷歌登录使用openid.Through这个代码我必须点击按钮带用户google.But我想带用户谷歌页面加载也.Can有谁告诉我如何在login.aspx的页面加载事件上运行folowing命令
<asp:Button ID="btnLoginToGoogle" Runat="server" Text="Login" OnCommand="OpenLogin_Click"
CommandArgument="https://www.google.com/accounts/o8/id"
Font-Bold="True" Font-Italic="False" Width="162px"
onclick="btnLoginToGoogle_Click" Font-Names="Arial" Height="39px" BackColor="#4C8FFD" ForeColor="White"
答案 0 :(得分:1)
您可以使用
btnLoginToGoogle_Click(this, new EventArgs());
在事件内部,您可以通过以下方式提取参数:
string s = btnLoginToGoogle.CommandArgument;
答案 1 :(得分:0)
试试这个
document.getElementById("btnLoginToGoogle").click();