如何使用 asp.net 移动到 aspx 页面中存在的特定选项卡
我在我的 asp.net 应用程序中使用 vantage.aspx 页面,其中包含“tabpnlvantage”、“tabpnlCell”、“tabpnlGrid”等选项卡面板。我的“Home.aspx”页面中有一个链接按钮,如果我在“home.aspx”页面中选择特定链接按钮,它应该导航到“vantage.aspx 页面”中的“tabpnlvantage”选项卡。我该怎么做,任何人都可以帮助我。提前致谢。
am using vantage.aspx page in my asp.net application, which contains tabpanels like "tabpnlvantage", "tabpnlCell","tabpnlGrid". I have a link button in my "Home.aspx" page, if i select a particular link button in "home.aspx" page it should navigate to the "tabpnlvantage" tab in the "vantage.aspx page". how should i do this, can any one help me out. thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用查询字符串。在 Home.aspx 中:
在 vantage.aspx.cs 中:
Use QueryString. In Home.aspx:
In vantage.aspx.cs:
不太确定它是这样工作的。当您单击所需的“选项卡”时,应显示关联的内容。
Not quite sure it works like that. When you click on the required 'tab', the associated content should be displayed.
使用
TabContainer1.ActiveTabIndex = 2;
选项卡索引从0开始。
Use
TabContainer1.ActiveTabIndex = 2;
tab index starts from 0.