473,698 Members | 2,243 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Multiple Tables in SQLDataSource

39 New Member
Hi

I have a GridView in my Page. I have to bind multiple tables into the GridView using SQLDataSource. For that I have given the coding as

Expand|Select|Wrap|Line Numbers
  1. <asp:GridView ID="Search_GridView" runat="server" Style="z-index: 100; left: 2px; position: absolute;
  2.             top: 270px" AutoGenerateColumns="False" OnSelectedIndexChanged="Search_GridView_SelectedIndexChanged" CellPadding="20" Width="720px" AllowPaging="True" OnPageIndexChanging="Search_GridView_PageIndexChanging" DataSourceID="SqlDataSource1">
  3.  
  4.              <Columns>
  5.                  <asp:hyperlinkfield headertext="Doctors Name"
  6.       datatextfield="DoctorsName"
  7.       datanavigateurlfields="DoctorsName" 
  8.       datanavigateurlformatstring="Logging.aspx?DoctorsName={0}" />
  9.  
  10.  
  11.                          <asp:BoundField DataField="Address" HeaderText="Address" SortExpression="Address" />
  12.                          <asp:BoundField DataField="Phone" HeaderText="Phone" SortExpression="Phone" />
  13.                           <asp:BoundField DataField="PrimaryTitle" HeaderText="PrimaryTitle" SortExpression="PrimaryTitle" />
  14.                  <asp:HyperLinkField Text="Fix an Appointment" HeaderText="Appointment Fixing" NavigateUrl="~/Appointment.aspx"/>
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.                     </Columns>
  22.  
  23.  
  24.  
  25.             <HeaderStyle BackColor="InactiveCaption" BorderWidth="0px" />
  26.             <AlternatingRowStyle BackColor="Silver" />
  27.  
  28.  
  29.  
  30.  
  31.         </asp:GridView>
  32.             <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:Hello_DrConnectionString3 %>"
  33.                SelectCommand="SELECT DoctorMaster.[FirstName]+''+DoctorMaster.[MiddleName]+''+DoctorMaster.[LastName] as DoctorsName,DrClinicDetails.[Address],DoctorMaster.[Telephone]+','+DoctorMaster.[Mobile]as Phone,PrimaryTitle.PrimaryTitle FROM [DoctorMaster],[DrClinicDetails],[PrimaryTitle],[Specialty] WHERE ((DoctorMaster.[FirstName] LIKE '%' + @FirstName + '%') OR (Specialty.[Specialty]=@Specialty) OR (DoctorMaster.[City] = @City)) AND DoctorMaster.[SPID]=Specialty.[SPID] AND PrimaryTitle.[PTID]=DoctorMaster.[PrimaryTitleID]">
  34.                 <SelectParameters>
  35.                     <asp:SessionParameter DefaultValue="Name" Name="FirstName" SessionField="Name" Type="String" />
  36.                     <asp:SessionParameter DefaultValue="Location" Name="City" SessionField="Location"
  37.                         Type="String" />
  38.                         <asp:SessionParameter DefaultValue="Specialty" Name="Specialty" SessionField="Specialty"
  39.                         Type="String" />
  40.                 </SelectParameters>
  41.             </asp:SqlDataSource>
In form load, I assigned value of session to the objects as

Expand|Select|Wrap|Line Numbers
  1. object obj;
  2.         obj = (object)Session["Name"];
  3.  
  4.         object obj1;
  5.         obj1 = (object)Session["Specialty"];
  6.  
  7.         object obj2;
  8.         obj2 = (object)Session["Location"];

but once I run GridView is not getting displayed
Jun 30 '08 #1
0 1341

Sign in to post your reply or Sign up for a free account.

Similar topics

4
3123
by: Steven Blair | last post by:
I am looking for some advice on the following problem: I am using a GridView and a SQLDataSource. The problem is based around a Room Booking app I am currently writing. When the user makes a booking, an entry must be written to the Booking table, and x amount of entries to the BookingXref(the room keys are held here)
5
3063
by: mimo | last post by:
Hello, I have seen samples on how to pull data from one table and save back to it using the Form View control. How do I pull from multiple tables and save back to multiple tables on one screen? Is there a sample of this somewhere? For example I want to create a Name and an Address from one screen. It has to create a Name Record, a Name Address Record, and a NameAddressJoin Record.
2
2616
by: Dabbler | last post by:
In some cases I would like to allow a user to select a row from a GridView to update in another page using a DetailsView form (passing the key in QueryString). In other cases I would like to use the same DetailsView form to allow general edit/insert/delete functions with Paging=true. I can't figure out how to change the select statement from one case to the other, e.g. if I have an SqlDataSource with:
0
1787
by: Nam | last post by:
I want to use the same sqlDataSource for two CheckBoxList controls in ASP.NET 2.0. For simplicity, I am using the case of only two CheckBoxList controls in the following example: My sqlDataSource is bound to a table in my database. The table has four columns, say, col1_ID, col1_value and col2_ID, col2_value. The DataValueField and DataTextField values for CheckBoxList1 are bound to col1_ID and col1_value respectively. And, for...
0
1767
by: Steven Blair | last post by:
Hi, Would be grateful if anyone with a high understanding of the SqlDataSource and FormView could have a look at my example and my problems. This has really been puzzling me for some time, and would like and expert just to confirm what I am doing is the best approach. Application example:
0
2740
by: joebob8000 | last post by:
This seems like a simple task, but my 6 year old roots in classic ASP must be causing me trouble with my current problem. I am looking to provide a search for users in which they can select multiple categores (check boxes) and view only the results in those categories in a gridView control. My goal is to do so for movies, so an example would be if the user checks comedy and childrens then they would only get childrens comedies and the...
1
5172
by: rosie2006 | last post by:
Environment: .net2.0 over oracle Problem? a simple select statement within a DetailsView that gets two parameter values from a GridView SelectedValue. It might be valuable to understand that to pull a single record from this particular table requires two parameters. What follows defies understanding. The desired query: <asp:SqlDataSource .....
2
4069
by: Joe Kovac | last post by:
Hi! The informations of our customers are saved in two tables: Customer: ID, CustomerNumber, ... + Person_ID Person: ID, Name, ... I want to have an editable GridView displaying all the data and being able to add, edit and delete customers.
4
6130
by: =?Utf-8?B?TWFkaXNvbg==?= | last post by:
Hi all, Could I use the sqldatasource with stored-procedure to return multiple recordset? I did not want to have any sqldatasourec in the one page just to return the record back to dropdownlists. In my stored procedure will have 2 select statement. If it can be done how I refer to each dropdownlist to correct recordset. Please advise. Thanks.
0
8676
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8608
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9161
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8867
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6522
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5860
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4370
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
2332
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2006
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.