Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public partial class PersonsPage : System.Web.UI.Page
  2. {
  3. public MyDBEntities db;
  4. public void Page_Init(object sender, EventArgs e)
  5. {
  6. db = new MyDBEntities ();
  7. GridView1.DataSource = db.Persons;
  8. GridView1.DataBind();
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement