Tagged Questions
3
votes
2answers
2k views
Changing SqlDataSource.SelectCommand at runtime breaks pagination
I have a GridView bound to a SqlDataSource with a default SelectCommand defined as such:
<asp:SqlDataSource ID="SqlDataSource1" runat="server" DataSourceMode="DataSet"
...
1
vote
2answers
273 views
How to get selected item in ASP.NET GridView
How can I get the selected item on the SelectedIndexChanging handler when using two SelectCommands? I can get the selected row through e.SelectedRow but I'm unable to get the selected column.
It's ...
0
votes
3answers
157 views
Passing NULL SQL parameter values as SelectParameters bound to a Gridview
The following SQL query WORKS perfectly in SQL Management Studio:
DECLARE @phone AS varchar(25)
SET @phone = NULL
DECLARE @firstname AS varchar(25)
SET @firstname = NULL
DECLARE @lastname AS ...
0
votes
2answers
2k views
SqlDataSource set SelectCommand dynamicly
I'm using a SqlDataSource and to avoid writing long queries directly in my code I thought I could make a Query class that returns the query I want as a string. I tried the code below but I just get ...