In a vB.NET 2010 web form application, I am changing an existing web page. I want the user to be able to select various customers based upon if the first name, last name, or middle names are selected. The idea is for the user to select one, two, and/or three
of the parameters and hit the search key.
The problem is the results only return data based upon only one parameter. If data for more than one paramter is selected, the selection criteria is ignored. When I run the sql in sql server management studio, I get the results I want.
Thus can you tell me what I can do to solve the problem?
<%@ Page Title="" Language="VB" MasterPageFile="~/MasterPage.master" AutoEventWireup="false" CodeFile="Support.aspx.vb" Inherits="letters_Support" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MPHead" Runat="Server">
</asp:Content ...
Go to the complete details ...