Display Record Values from Two Tables in ASP.net Visual Web Developer Express Edition

To display data from two tables in ASP.net, we’ll need two tables with one or more identical fields. One field should act as a primary key on one table and the other should act as a foreign key or normal key on the other table. For the sake of example, let’s make two tables tblStudents and tblBooks using the following structures:

a. tblStudents
Column NameData Type
chrstudidnchar(10)
chrstudfnamenchar(20
chrstudlnamnchar(20)

b. tblBooks

Column NameData Type
chrbookidnchar(10)
chrtitlenchar(30
chrauthornchar(30)
chrstudidnchar(10)

1. Start Visual Web Developer Express Edition.

2. Click File>New Website>Select Asp.net website from Visual Studio Installed Templates options>Click Ok.

3. Click View>Solution Explorer>Right-click App_Data from the solution Explorer>Add New Item>Select SQL Server Database from Visual Studio Installed templates options>Accept the default database.mdf name>Click Add.



4. The Database Explorer panel will then come into view. To create a new table>Right-click Tables from the database explorer panel>Select Add new table.



Enter the following column names, use chrstudid as a primary key:



5. Click the close(x) button when done. You will be prompted if you wanted to saves changes to the table, just Click the Yes button>Enter “tblStudents” in the Enter a name for the table textbox>Click Ok.

6. Click the + icon beside the Tables node in the database Explorer>Right-click tblStudents>Click Show Table Data.



Enter the following values:




7. Right-click Tables from the Database Explorer again then Select Add New Table.



Enter the following Column names using chrbookid as a primary key:





8. Click the close(x) button when done. You will be prompted if you wanted to saves changes to the table, just Click the Yes button>Enter “tblBooks” in the Enter a name for the table textbox>Click Ok.

9. Click the + icon beside the Tables node in the database Explorer>Right-click tblBooks>Click Show Table Data.



Enter the following values:



10. Click View Solution Explorer > Double-Click Default.aspx> Double-click the design button>Expand the Data category of the toolbox>Click and drag a SqlDataSource control to the Outline Designer window.



11. Click the configure data source link>Select Database.Mdf from the “Which data connection should your application use to connect to the database?” listbox>Next.


12. Click the Specify a custom SQL statement or stored procedure radio button>Next.

13. Click the SELECT tab then enter the following SQL statements in the SQL Statement textarea:



14. This statement retrieves the values of our specified column names from both tables. If you noticed, we’ve added tblStudents dot chrstudid to specify that the values should be retrieve from the tblStudents table since tblBooks table also has chrstudid.Moreover, we’ve added INNER JOIN to join our tables using a common field
due to the fact that chrbookid, chrtitle, and chrauthor exists on the other table.


15. Click next. You can click the test query button to preview the result then click the finish button.

16. Click a grid view control from the data category of the toolbox then drag it onto the Outline Designer. Select the name of your SQLDataSource from the gridview’s Choose Data Source List Box.



16. Press CTRL + F5 to test your application.

17. You should now see an output similar to the following screenshot:

Example 18: Race to Ten Text-Based Game

Problem: Make a simple Race to Ten text-based game. The details of the game is shown in the following screenshot:



Code:
  1. // Learn more about F# at http://fsharp.net  
  2. open System  
  3. //change the console title  
  4. System.Console.Title<-"Race to Ten"  
  5. //adds the foreground and background color  
  6. System.Console.ForegroundColor<-ConsoleColor.DarkBlue  
  7. System.Console.BackgroundColor<-ConsoleColor.Gray  
  8. //clears the screen. This is to apply the background color once the  
  9. //console application is loaded  
  10. System.Console.Clear()  
  11. //display the game title screen  
  12. printfn "\t\t\t\tRace to Ten"  
  13. printfn "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\tPress any key to continue..."  
  14. System.Console.ReadLine()|>ignore  
  15. System.Console.Clear()  
  16. //display the game description screen  
  17. printfn "Instructions:"  
  18. printfn "In this game, each player(you vs. the computer) enters a number between 1 to 3"  
  19. printfn "The previously inputted number will be added to the present number"  
  20. printfn "The first player to enter a number that adds up to 10 wins the game"  
  21. printfn "Press Esc to quit the game"  
  22. printfn "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\tPress any key to continue..."  
  23.   
  24. let mutable userkey=System.Console.ReadLine()  
  25. System.Console.Clear()  
  26. //declares our variables  
  27. let rndnum=new Random()  
  28. let mutable intsum=0  
  29. let mutable intusernum=0  
  30. let mutable intremain=0  
  31. //loop while sum is not equal to 10 and   
  32. //the spacebar key has been pressed  
  33. while (intsum < 10 ) do  
  34. //computer generates a number  
  35.         printfn "\n\nAI's turn..."  
  36.         let intainum=rndnum.Next(1,3)  
  37.         printfn "AI num: %d" intainum  
  38. //accumulates the number to the  
  39. //value of sum  
  40.         intsum<-intsum + intainum  
  41.         printfn "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\tPress any key to continue...Esc to quit"  
  42.         System.Console.ReadLine()|>ignore  
  43. System.Console.Clear()  
  44. //display how many numbers more to go  
  45. //before 10  
  46. intremain<-intsum-10    
  47.         printfn "%d more to go!" intremain  
  48.  //if the sum is equal to 10   
  49.  //display "computer wins"  
  50.         if intsum>=10 then    
  51. System.Console.Clear()  
  52. //reset the value of sum so that   
  53. //the game will loop again  
  54. //remove intsum<-0 if you want the  
  55.  //game to end after one game  
  56.             printfn "Computer Wins!"   
  57.             intsum<-0  
  58.             printfn "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\tPress any key to continue...Esc to quit"  
  59.             System.Console.ReadLine()|>ignore  
  60. System.Console.Clear()            
  61. //otherwise ask for a number           
  62. printfn "\n\nYour turn:"   
  63. intusernum<-(int)(System.Console.ReadLine())  
  64.  //if the number exceeds 3 then  
  65.  //ask for a number again  
  66.         if intusernum>3 then  
  67. printfn "Number must be between 1 to 3"  
  68. printfn "You turn:"  
  69. intusernum<-(int)(System.Console.ReadLine())  
  70.             intsum<-intsum + intusernum  
  71.             System.Console.Clear()  
  72. //accumulates the inputted number to the value of sum  
  73.         intsum<-intsum + intusernum   
  74.         intremain<-intsum-10    
  75.         printfn "%d more to go!" intremain  
  76.         if intsum>=10 then  
  77. System.Console.Clear()  
  78. printfn "You Win!"  
  79. intsum<-0  
  80.             printfn "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\tPress any key to continue...Esc to quit"  
  81.             System.Console.ReadLine()|>ignore  
  82. System.Console.Clear()