Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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" ...
2
votes
1answer
55 views

Declaring an object of a conditional type with a System.Type

I am attempting to launch a specific form depending on the selected node of a treeview on the doubleclick event. The code I need to use to launch the form is a little bulky becuase I have to ensure ...
1
vote
3answers
76 views

SelectCommand with Parameters provides empty result

Currently I will clean my code a little bit and VS told me, it is better to use the SqlParameter for the sql commands instead a compound string. So I decided to change my code, unfortunately now I ...
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
2answers
125 views

the conversion of nvarchar value “0854697543” overflowed an int column in select command

hi there i have a select command, it return answer records but also give this error in query builder VS2010. SELECT * FROM Orders WHERE (BCode = 025) AND (Date BETWEEN '1390%' AND '1391%') OR ...
0
votes
3answers
155 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
193 views

asp.net SelectCommand SQL JOIN problem

I'm a database noob so please bear with me. I'm trying to join three tables together in the SelectCommand attribute of a SqlDataSource. Here's my select command at the moment: SelectCommand="SELECT ...
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 ...
0
votes
4answers
5k views

ASP.NET : Passing a outside variable into a <asp:sqldatasource> tag ASP.NET 2.0

I'm designing some VB based ASP.NET 2.0, and I am trying to make more use of the various ASP tags that visual studio provides, rather than hand writing everything in the code-behind. I want to pass ...