Click here to Skip to main content
15,885,278 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
this is my SP:
SQL
ALTER proc [dbo].[autherlist]
@l nvarchar(1)=''
as 
IF @l = ''
BEGIN
SELECT [author_id], [F-name], [L-name]FROM [authors] ORDER BY [L-name]
end
else
begin
SELECT [author_id], [F-name], [L-name]FROM [authors] where [L-letter] = @l ORDER BY [L-name]
end


and this my datasource:
XML
<asp:SqlDataSource ID="ds" runat="server" 
    ConnectionString="<%$ ConnectionStrings:ariaquoteConnectionString %>" 
    SelectCommand="autherlist" SelectCommandType="StoredProcedure">
    <SelectParameters>
        <asp:RouteParameter DefaultValue="" Name="l" RouteKey="letter" Type="String" />
    </SelectParameters>
</asp:SqlDataSource>

problem is this: SP execute well in sql manager, and with ado.net but with datasource show no record!
where is the problem?
Posted

1 solution

Set
XML
CancelSelectOnNullParameter="false"
on your datasource. By default, if you do not specify a parameter, even though the SQL SP is OK with that, it will not execute.
 
Share this answer
 
Comments
taha bahraminezhad Jooneghani 6-Jul-12 4:07am    
thank you very much but it still doesn't work!
ZurdoDev 6-Jul-12 7:50am    
Do a SQL trace in SQL Profiler to see what is happening. Or implement the Selecting event on your DataSource and look at the Command to make sure it is right. Also, RouteParameter is new to .Net 4 so make sure you are using it correctly.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900