We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Protected Overloads Sub Page_Load(sender As Object, e As EventArgs) Handles Me.Load _sortDirection = hidSortDirection.Value _sortExpression = hidSortExpression.Value Using ds As New DataSet Try ds.Tables.Add(DirectCast(dsCompletePlayer.Select(DataSourceSelectArguments.Empty), DataView).ToTable()) lvCompletePlayer.DataSource = ds lvCompletePlayer.DataBind() Catch ex As Exception End Try End Using End Sub
If relevant, the incorrectly converted output, or an exception with stack trace.
protected new void Page_Load(object sender, EventArgs e) { _sortDirection = hidSortDirection.Value; _sortExpression = hidSortExpression.Value; using (var ds = new DataSet()) { try { ds.Tables.Add(((DataView)dsCompletePlayer.Select(DataSourceSelectArguments.Empty)).ToTable()); lvCompletePlayer.DataSource = ds; lvCompletePlayer.DataBind(); } catch (Exception ex) { } } }
The text was updated successfully, but these errors were encountered:
Thanks, this is the root issue and an important test case for the cause of #463
My current understanding is:
Overloads
new
Sorry, something went wrong.
7c43378
GrahamTheCoder
No branches or pull requests
Input code
Erroneous output
Expected output
Details
The text was updated successfully, but these errors were encountered: