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