Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 155755
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T10:12:42+00:00 2026-05-11T10:12:42+00:00

I have the following T-SQL in a SelectCommand : SELECT h.Business, hrl.frn FROM registration

  • 0

I have the following T-SQL in a SelectCommand:

SELECT h.Business, hrl.frn FROM registration hrl INNER JOIN holder h on h.call = hrl.call WHERE  (h.Business like '%' + @business + '%' and h.Business is not null)  and  (hrl.frn = @frn and hrl.frn is not null) 

business and frn are tied to control parameters and it should return data even if one or both is left blank, but if I put in data just for frn for example, it does not return anything. I think my T-SQL is not doing the right thing and I am also not sure if I am handling the like correctly.

if both textboxes are left empty, it should return all data. If frn is entered, but business is left blank, it should only return data related to that frn. If business if entered, but frn is left blank, it should return all matches like business. If both are entered, it should return data only matching the frn and the business.

Also, I am not sure if doing the and is not null is actually necessary.

protected void btnSearch_Click(object sender, EventArgs e) {     if (txtFRN.Text == '')         frn = null;      if (txtBusiness.Text == '')         business = null;      sqlDsMaster.SelectParameters[frn].DefaultValue = frn;     sqlDsMaster.SelectParameters[business].DefaultValue = business;      sqlDsMaster.DataBind(); } 

The above throws an ‘Object Reference not set to an instance’ when it hits this line:

sqlDsMaster.SelectParameters[frn].DefaultValue = frn; 

frn and business are properties.


Here is the SearchMaster stored procedure:

CREAETE PROCEDURE SearchMaster @business nvarchar(300) = NULL, @frn nvarchar(10) = NULL AS SELECT h.Business,        hrl.frn FROM registration hrl INNER JOIN holder h on h.call = hrl.call WHERE (@business IS NULL OR h.Business like '%' + @business + '%')    AND (@frn IS NULL OR hrl.frn = @frn) 

Here is the SearchDetails stored procedure:

CREATE PROCEDURE SearchDetails @business nvarchar(300) = NULL, @frn nvarchar(10) = NULL AS SELECT hrl.call  FROM registration hrl  INNER JOIN holder h ON h.call = hrl.call WHERE (@business IS NULL OR h.Business LIKE '%' + @business + '%')        AND (@frn IS NULL OR hrl.frn = @frn) 

Here is the SqlDataSource for the SearchMaster procedure:

<asp:SqlDataSource ID='sqlDsDetails'                     runat='server'                     ConnectionString='<%$ ConnectionStrings:cnxString %>                    SelectCommandType='StoredProcedure'                     SelectCommand='SearchMaster'>   <SelectParameters>     <asp:ControlParameter Name='business' ControlID='txtBusiness'                            Type='String' PropertyName='Text'                             ConvertEmptyStringToNull='true' />     <asp:ControlParameter Name='frn' ControlID='txtFRN'                            Type='String' PropertyName='Text'                           ConvertEmptyStringToNull='true'/>   </SelectParameters> </asp:SqlDataSource> 

Here is the SqlDataSource for the SearchDetails procedure:

<asp:SqlDataSource ID='sqlDsDetails'                     runat='server'                     ConnectionString='<%$ ConnectionStrings:cnxString %>                    SelectCommandType='StoredProcedure'                     SelectCommand='SearchDetails'>   <SelectParameters>     <asp:Parameter Name='frn' Type='String' DefaultValue=''                     ConvertEmptyStringToNull='true' />     <asp:Parameter Name='business' Type='String' DefaultValue=''                     ConvertEmptyStringToNull='true' />   </SelectParameters> </asp:SqlDataSource> 

Here is the button click that binds the SqlDsMaster:

protected void btnSearch_Click(object sender, EventArgs e) {     sqlDsMaster.DataBind(); } 

Here is the gvMaster_RowCreated that creates the rows for the details:

protected void gvMaster_RowCreated(object sender, GridViewRowEventArgs e) {     if (e.Row.RowType == DataControlRowType.DataRow)     {         SqlDataSource ctrl =          e.Row.FindControl('sqlDsDetails') as SqlDataSource;          if (ctrl != null && e.Row.DataItem != null)         {             ctrl.SelectParameters['frn'].DefaultValue =              ((DataRowView)e.Row.DataItem)['frn'].ToString();              ctrl.SelectParameters['business'].DefaultValue =              ((DataRowView)e.Row.DataItem)['business'].ToString();          }      }  } 

SearchMaster and SearchDetails both work if I run it through SQL Server Management Studio and it works if I enter both data for business and frn, but if I enter just one, no data is returned. Are the parameters set up correctly? Also, if I am initializing the parameters to null in the procedure, is it still necessary to use ConvertEmptyStringToNull?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T10:12:43+00:00Added an answer on May 11, 2026 at 10:12 am

    I would do something like:

    where (@business is null           or @business = ''           or h.Business like '%' + @business + '%')       and (@frn is null               or @frn = ''               or hrl.frn = @frn) 

    If you make your empty search strings nulls before passing them, you can skip the @yyy = ” part.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 81k
  • Answers 81k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer It turned out to be a single setting in IIS7.… May 11, 2026 at 4:33 pm
  • Editorial Team
    Editorial Team added an answer First of all, if you are planning to have a… May 11, 2026 at 4:33 pm
  • Editorial Team
    Editorial Team added an answer Do you really want your page to work in quirks… May 11, 2026 at 4:33 pm

Related Questions

I have a sql query for my SelectCommand on my SqlDataSource. It looks like
I'm having trouble getting LINQ to translate something into the query I need. In
Given the following table in SQL Server 2005: ID Col1 Col2 Col3 -- ----
I have the following code: var tagToPosts = (from t2p in dataContext.TagToPosts join t

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.