GRID VIEW
Generating grid without any "frills"
| AuthorID | AuthorName | BookName |
| 13 | Berry1 | VB |
| 19 | Hampton | Java |
| 23 | Johnson | ABC for kids |
| 24 | Belly | European History |
| 26 | Timmy | Java is fun |
| 27 | Sammy | Programming made Easy |
| 28 | Harrison | VB nutshelll |
| 30 | Kim | East and West |
| 40 | Doe Jim | VB |
| 41 | Koe Jim | VB |
| 42 | Hey Jim | VB |
| 43 | john | |
| 44 | | VB |
| 45 | Bennett | C# 2008 |
| 46 | Gaurav | VB2005 |
| 47 | a | |
| 48 | | |
| 49 | | |
| 50 | a | a |
| 51 | book | book2 |
| 53 | Gaurav Bansal | VB |
| 54 | Me | Book123 |
| 55 | sfgh | asfd |
| 60 | Wiebe | Throw Darts Like a Pro |
| 61 | James | sldkjaf |
| 64 | John | Blueberries |
| 66 | Sinbad | Is Funny |
| 69 | Bob | Is Cool |
| 70 | Bob | Is cool |
| 71 | Bob | New Try |
| 73 | james | star |
| 76 | Morehead | cool |
| 77 | asdfa | asdf |
| 78 | john | pie |
| 79 | john | cake |
| 87 | adg | asdfas |
| 88 | tyyery | eyre |
| 89 | mark morin | loser |
____________________________________________________________________________
Generating a grid which displays author inoformation based on the author name provided
by the user in the
TEXT BOX here:
Enter Author Name:
___________________________________________________________________________________
Getting Author Name from a COOKIE and then passing that information to the SQL Database
to
get more information on that author
Note: For this you have to create a cookie using the following code:
Dim cookie2 As HttpCookie
cookie2 = New HttpCookie("author", TextBox1.Text)
Response.Cookies.Add(cookie2)
This code needs to be typed in the page where you are creating the cookie
___________________________________________________________________________
Getting Author Name from the QUERY STRING which is posted to this page and
then passing that information to the SQL Database to get more information on that
author
_________________________________________________________________________