在页面加载时运行按钮代码

发布于 2024-12-27 19:42:03 字数 524 浏览 1 评论 0原文

我有以下按钮代码并设置为使用 openid 将用户带到 google 进行登录。通过此代码,我必须单击按钮才能将用户带到 google。但我也想在页面加载时将用户带到 google。任何人都可以告诉我我如何在 login.aspx 的页面加载事件上运行以下命令

<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" 

I Have folowing Button code and setting to take user to google for login using openid.Through this code i have to click on the button to take user to google.But I want to take user to google on page load also.Can anyone tell me how can i run the folowing command on page load event of login.aspx

<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" 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

零度° 2025-01-03 19:42:03

您可以使用

btnLoginToGoogle_Click(this, new EventArgs()); 

在事件内部,您可以通过以下方式提取参数:

string s = btnLoginToGoogle.CommandArgument;

You can use

btnLoginToGoogle_Click(this, new EventArgs()); 

Inside the event you can extract the argument by:

string s = btnLoginToGoogle.CommandArgument;
白鸥掠海 2025-01-03 19:42:03

试试这个

document.getElementById("btnLoginToGoogle").click();

Try this

document.getElementById("btnLoginToGoogle").click();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文