Emerging Information Technologies - Examples
   Skip Navigation LinksETL Course Home > ETL Examples > Data > Data Controls > GridView Skip Navigation Links
ETL Course Home
ETL ExamplesExpand ETL Examples
Skip Navigation Links.  

              Login  














 
GRID VIEW


Generating grid without any "frills"

AuthorIDAuthorNameBookName
13Berry1VB
19HamptonJava
23JohnsonABC for kids
24BellyEuropean History
26TimmyJava is fun
27SammyProgramming made Easy
28HarrisonVB nutshelll
30KimEast and West
40Doe JimVB
41Koe JimVB
42 Hey JimVB
43john 
44 VB
45BennettC# 2008
46GauravVB2005
47a 
48  
49  
50aa
51bookbook2
53Gaurav BansalVB
54MeBook123
55sfghasfd
60WiebeThrow Darts Like a Pro
61Jamessldkjaf
64JohnBlueberries
66SinbadIs Funny
69BobIs Cool
70BobIs cool
71BobNew Try
73jamesstar
76Moreheadcool
77asdfaasdf
78johnpie
79johncake
87adgasdfas
88tyyeryeyre
89mark morinloser


____________________________________________________________________________

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


 


_________________________________________________________________________


 

Copyright Gaurav Bansal (c) 2007