I don't know the official term for what I'm trying to create, but this is what I want to do:
I have a webform which will display detailed information about a university course (title, instructor, description, etc.). This webform will be databound to a database of courses. The way I know how to do it is by specifying a course in the querystring like where 5 is the course ID in the database. However, this is not pretty in terms of users linking to or bookmarking this page.
I'd like the user to be able to navigate to or where the filename is actually the course name. However, I DO NOT want to have to create a separate webform for each course. I want to create one file which will pull the database record that matches the filename minus the extension (SELECT * FROM COURSES WHERE name='pmo123').
Is this possible? Someone please tell me yes!
I have a webform which will display detailed information about a university course (title, instructor, description, etc.). This webform will be databound to a database of courses. The way I know how to do it is by specifying a course in the querystring like where 5 is the course ID in the database. However, this is not pretty in terms of users linking to or bookmarking this page.
I'd like the user to be able to navigate to or where the filename is actually the course name. However, I DO NOT want to have to create a separate webform for each course. I want to create one file which will pull the database record that matches the filename minus the extension (SELECT * FROM COURSES WHERE name='pmo123').
Is this possible? Someone please tell me yes!