asp.net quiz application
i want to create asp.net webforms, contain single multiple choice question on a form using formview que. and ans. from sql server table(sqldatasource). please gi开发者_开发百科ve me a basic idea thanks
- Create a new website/web application in Visual Studio
- Drag a FormView control from the Visual Studio toolbox to the Default.aspx page of your application.
- Drag a SQL data-source from the toolbox to the same page, associate it with the FormView and the database.
You are up and running.
That was a very high-level idea of how to go about it. No one would be able to guide you step-by-step and make you learn all the aspects. You'd need to start fiddling with it on your own.
Following links would give you a head-start:
Build Your First ASP.NET Application with ASP.NET Web Forms
Querying Data with the SqlDataSource Control
Data Access Related Videos
精彩评论