在页面加载时运行按钮代码
我有以下按钮代码并设置为使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
在事件内部,您可以通过以下方式提取参数:
You can use
Inside the event you can extract the argument by:
试试这个
Try this