Click here to Skip to main content
16,012,173 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to create grid veiw dynamically in asp.net using what am giving in side the textbox.text

give me answers pls
thanks
pavan
Posted
Comments
thatraja 29-Jul-11 12:10pm    
You question not clear, explain it clearly. So update your question with complete details. Also notify me after you done.

1 solution

Your question is not clear.. hope the below one helps you.

If you wanted to create a gridview dynamically, u can have placeholder on your page. In your event you need to create a gridview like below.

Dim grdView as GridView
grdView.DataSource = loDT '(your datasource)
grdView.Databind()

plceHolder.Controls.Add(grdView).
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900