| | |
Any Simple Code for binding data with gridview?
Please support our ASP.NET advertiser: Intel Parallel Studio Home
Thread Solved |
•
•
Join Date: Aug 2008
Posts: 63
Reputation:
Solved Threads: 2
0
#2 Nov 3rd, 2009
Try this:
define the variables globally if u want to use them more thn once.
ASP.NET Syntax (Toggle Plain Text)
SqlConnection cn = new SqlConnection("Your ConnectionsString here"); SqlCommand cmd = new SqlCommand("Query to Retrieve data from database",cn); SqlDataAdapter da = new SqlDataAdapter(cmd); DataSet ds = new DataSet(); da.Fill(ds, "Data"); gridview.DataSource = ds.Tables[0]; gridview.DataBind();
define the variables globally if u want to use them more thn once.
![]() |
Similar Threads
- unable to display data in GridView control from datasource (ASP.NET)
- General Question about GridView framework 3.5 (ASP.NET)
- Getting error for the simple code Please help me out (VB.NET)
- Simple code help (Python)
- pls help in this code in storing a data (PHP)
- Simple login (read data through txt file) (Visual Basic 4 / 5 / 6)
- source code to insert data into database using javabean (Java)
- simple code (C++)
- CAn anyone provide me a very simple code for shopping cart? (PHP)
Other Threads in the ASP.NET Forum
- Previous Thread: Custom Validation Check Duplicate Data
- Next Thread: redirecting back to referrer page in asp.net
Views: 354 | Replies: 2
| Thread Tools | Search this Thread |
Tag cloud for ASP.NET
.net 2.0 activexcontrol advice ajax alltypeofvideos anathor asp asp.net bc30451 bottomasp.net browser button c# c#gridviewcolumn checkbox click commonfunctions compatible confirmationcodegeneration content courier css dataaccesslayer database datagridview datagridviewcheckbox datalist deadlock development dgv dropdown dropdownlist edit expose feedback flash form formatdecimal forms formview google grid gridview homeedition hosting iframe iis index javascript jquery list listbox login microsoft migration mono mouse mssql multistepregistration news numerical object objects panelmasterpagebuttoncontrols problem project radio ratings richtextbox rotatepage save schoolproject search security session silverlight smartcard sql-server sqlserver2005 suse textbox tracking typeof unauthorized update validation vb.net video videos view virtualdirectory vista visual-studio visualstudio web webdevelopemnt webservice xml youareanotmemberofthedebuggerusers





