Tagged Questions

2
votes
1answer
51 views

Sql Equivalent to UInt16

I know that the Sql equivalent of Int16 is SqlInt16. But what is the Sql equivalent of UInt16, UInt32 and Uint64?
2
votes
1answer
58 views

How to recycle data in an SqlDataSource object?

I have an SqlDataSource object, linked to a GridView, which receives data from a database when executed. I'd like to add the values of the "Cost" column, to get the "TotalCost", and place it in a …
2
votes
5answers
3k views

How to pass variable to SelectCommand of SqlDataSource?

I want to pass variable from the code behind to SelectCommand of SqlDataSource? I dont want to use built-in parameter types (like ControlParemeter, QueryStringParameter, etc) I need to pass a …
2
votes
1answer
2k views

Dynamically built SelectCommand for GridView SqlDataSource in asp.net

I'm working with a GridView that uses a SqlDataSource element that looks like this: <asp:SqlDataSource ID="InventoryDB" runat="server" ConnectionString="<%$ …
2
votes
2answers
75 views

Does anyone know a way to “share” a datasource without causing multiple postbacks?

For instance, I have a SqlDataSource that loads a list of items. On my form, I've got 3 dropdown boxes that both should contain that same list of values, and then the user can select a different …
1
vote
2answers
57 views

empty gridview although the sqldatasource has values

I have really weird situation. I've created new aspx page, and without using ANY custom logic objects (everything created with visual studios wizards) tried to create grid view from sqldatasource. …
1
vote
5answers
48 views

Delete file when deleting row from table

On my website I use simple file management. User can upload files, see the list and delete them. In database I have one table Files which contain information about files (file name, description, …
1
vote
1answer
334 views

Delete User from Table and ASPNET Membership Provider with sqlDataSource

I have a Gridview that shows a list of Contacts via a sqlDataSource. Included is an Item Template for Deleting a record - a LinkButton - with OnClientClick set to use some JavaScript: "return …
1
vote
1answer
256 views

How can I do a cast in a SqlDataSource FilterExpression?

I'm using a single textbox to search a report and filter out records. One of my fields is an int32 and the rest are varchar's. So when the filter tries to compare the string from the textbox with the …
1
vote
1answer
111 views

Set button to disabled when AccessDataSource has no rows

I am using an AccessDataSource control bound to a DetailsView control. When the select returns no rows (the DetailsView disappears, but is still set to visible), then I would like to disable some …
1
vote
2answers
105 views

.Net SqlDataSource tag SelectCommand

Hi, My question is in regard to the SelectComman in the <asp:SqlDataSource ID="SqlDataSource2" runat="server" ConnectionString="<%$ ConnectionStrings:conStr %>" …
1
vote
4answers
456 views

How can I set the sqldatasource parameter’s value?

I'm trying to set the value of the sqldatasource's selectcommand parameter @ClientID as in the code below, but it's not working out. My code: Dim strCommand = "SELECT caller_id, phone, name, email …
1
vote
1answer
127 views

Getting the data retrieved by SqlDataSource (ASP.Net)

I have a SqlDataSource retrieve tabular data from a store procedure. How can I get to the data it retrieved in order to save it to the cache?
1
vote
3answers
1k views

Dropdownlist AppendDataboundItems (first item to be blank)

Hi, I have a drop down list inside an update panel that is populated on postback from a sql data source. It has a parameter which is another control. I sometimes need multiple postbacks, but what …
1
vote
2answers
135 views

Why does the following bring back data only when both parameters are set?

The two procedures, SearchMaster and SearchDetails work if I run it in Sql Management Studio and SearchMaster even runs fine when I am Testing the Query when I set up the stored procedure in design …

1 2 3 4 5 next
15 30 50 per page