Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I haveasp:GridView displaying client requests using asp:SqlDataSource. I want to limit displayed information by client:

View.aspx has to display everything, View.aspx?client=1 has to display only requests from client ID #1.

So I'm using <asp:QueryStringParameter Name="client" QueryStringField="client" /> for query "EXEC getRequests @client".

Everything works properly when some client is specified. But don't - if not.

I tested my SP using SSMS - it works properly in both cases - when parameter is specified and when it isn't (NULL passed explicitly).

What have I do?

share|improve this question
Looks like you're opening yourself up to some pretty serious SQL injection attack vectors with this approach. – womp Apr 21 '10 at 22:41
@womp: How am I opening? QueryStringParameter is being added in code-behind only for users with appropriate rights and after a number of checks. – abatishchev Apr 21 '10 at 22:43
AH, if you're sanitizing it, then that's fine. It just looked from your question like you were using it directly. – womp Apr 21 '10 at 22:43
2  
@womp: I take only client ID (int) and pass it to SP. I'm sure this is safe to do. I don't do silly things like "SELECT ... WHERE ID=" + Request["client"] :) – abatishchev Apr 21 '10 at 22:46

2 Answers

up vote 7 down vote accepted

SqlDataSource won't fire if any of it's parameters are null, unless you specify otherwise:

<asp:SqlDataSource CancelSelectOnNullParameter="False" />

It might also be necessary to add a null default value to your querystring parameter:

<asp:QueryStringParameter Name="client" QueryStringField="client" DefaultValue="" ConvertEmptyStringToNull="True" />
share|improve this answer
Thank you very much! First option does what I need. – abatishchev Apr 21 '10 at 23:31

You need to define a Default value to the parameter for those situations, for example:

<asp:QueryStringParameter Name="client" QueryStringField="client" DefaultValue="0"/>

and then in the SP you need verify if the client is 0, return all the clients, otherwise the specific one.

share|improve this answer
Is it possible to set default value to NULL (DBNull.Value) ? – abatishchev Apr 21 '10 at 22:53
Hmm i dont think so. But is there a reason to use NULL instead of 0, -1 or something else? – Tom S. Apr 21 '10 at 22:54
For NULL it's easy to use SQL built-in function ISNULL(,). Values like 0 or -1 required additional CASE-WHEN-THEN statement into query – abatishchev Apr 21 '10 at 23:09
With this url "View.aspx?client=" i think the parameter is automaticly converted to null, because its empty. Try this and give some feedback, – Tom S. Apr 21 '10 at 23:13
Thank you for your participation! :) Problem is solved. See below – abatishchev Apr 21 '10 at 23:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.