ASP.NET 在没有回发的情况下填充列表框
我有一个简单的 aspx 页面,其中包含文本框、链接按钮和列表框。
该列表框将填充来自 SQL 数据库中存储过程的值。
不知何故,我想做的是当用户单击链接按钮时用这些变量填充列表框。理想情况下,我想在没有回发的情况下执行此操作。
有什么办法可以实现这一点吗?
谢谢,
杰森
I have a simple aspx page with a textbox, linkbutton and listbox.
The listbox is to be populated with values from a stored procedure in a SQL database.
What I'd like to do, somehow, is to populate the listbox with those variables when the user clicks the linkbutton. Ideally, I'd like to do this WITHOUT a postback.
Is there any way this can be accomplished?
Thanks,
Jason
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我很快就为你模拟了一个。
关于后面的代码:
当然,您可以将 SqlDataSource 更改为存储过程,但是当您单击按钮时,它将填充该列表而无需回发。如果您还需要什么,请告诉我。
-JJ
I mocked one up for you really quickly.
On the code behind:
Of course you would change the SqlDataSource to your stored proc, but when you clicked the button, it would populate that list without a postback. Let me know if you need anything else.
-JJ
如果您确实不想发回帖子,那么必须使用 javascript 或其他方法在客户端上以某种方式完成。如果您希望在不出现回发的情况下完成此操作,可以使用 更新面板。
If you truly don't want a post back then it must be done somehow on the client using javascript or some other method. If you want it to be done with out the appearance of a post back this can be accomplished using a updatepanel.
首先,如果您不想回发,事情就会变得复杂。有理由避免回发吗?
但是,如果您不想回发,您有 2 个选择:
对于这两个操作,您将需要使用 AJAX 来查询服务器(Web 方法或 http 处理程序)。您不能使用 MS AJAX,因为它会导致部分回发。使用 jQuery 来执行请求。
请注意,UpdatePanel 使用 MS AJAX,因此将导致部分回发。
First of all, if you do not want postback, it get complicated. Is there a reason to avoid postback?
If however, you do not want postback you have 2 options:
For both actions, you will need to use AJAX to query the server (either the web method, or the http handler). You cannot use the MS AJAX because it will cause a partial postback. Use jQuery to do the request.
Note that the UpdatePanel uses MS AJAX and therefore will cause a partial postback.