3
votes
How do you add arguments to an ASP button PostBackUrl?
If you have the PostBackUrl set on your button, then the search box field on your first page, and any other form fields on that page, are already being posted to your search page. The trick is gett …
3
votes
Disable button on form submission
I'm not a huge fan of writing all that javascript in the code-behind. Here is what my final solution looks like.
Button:
<asp:Button ID="btnSubmit" runat="server" Text=" …
1
vote
Get data being bound to ListView on DataBound event
C# Solution
protected void listView_ItemDataBound(object sender, ListViewItemEventArgs e)
{
if (e.Item.ItemType == ListViewItemType.DataItem)
{
ListViewDat …
