My problem here is the following :
i am developing a website where Lecturers are supposed to create Course Pages for every course they give in the Uni. so i don’t know how i will take the values like the course name for example from the course creating page and create a content.aspx with these values which have the same layout or Design as the master page .. any suggestions ?? ( i mean in each time a Lecturer enter and create a page i want to Create a .aspx container which have the same layout as Master class )
My problem here is the following : i am developing a website where Lecturers
Share
Do not create a single page for each course, but load the content from a database. So you have a page with Querystring e.g.
~/course.aspx?courseid=123. InPage_Loadyou can fetch the course name from the database and assign it to aTextboxorLabel.