在 ASP.Net |Ajax | 中创建多个隐藏 Div jQuery
我对网络编程有点陌生,
我正在尝试设计一个搜索页面。 我想创建几个单选按钮,每次单击单选按钮都会显示一个 div 包含相关的搜索 div。 并从那里对数据库进行查询(与帖子无关)
我该怎么做? 试图搜索它,但没有得到好的答案。 我希望页面的更改将在服务器端而不是客户端进行。 附注 到目前为止我一直在使用ajax控制套件..
感谢您的帮助。
i'm kinda new in web programming,
i'm trying to design a search page.
i want to creating few radio buttons where each click on a radio button will show a div
contains the related search div's.
and from there to do the query to the database(not related to the post)
how can i do that ?
tried to search for it , and didn't get good answer.
i want that the change of the page will be in server side and not the client side.
p.s.
i have been working with ajax control kit so far..
thanks for the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您只需要一个 UpdatePanel、单选按钮和一个 MultiView 控件。
当选定的单选按钮更改时,您只需将相关视图设置为活动状态,
You just need an UpdatePanel, radio buttons and a MultiView control.
When the selected radio button changed you just set the View related to be active,
您可以使用面板和更新面板来完成此操作。
然后,您可以在后面的代码中的 ShowDivs 方法中处理设置面板的 Visible 属性。
或者,您可以使用 jquery/javascript 来完成此操作。
You can accomplish this with Panels and an Update Panel.
You would then handle setting the Visible property of the panels in your ShowDivs method in your code behind.
Or, you could use jquery/javascript to accomplish this.