InterviewSolution
Saved Bookmarks
| 1. |
Is it possible to apply themes to an ASP.NET application? |
|
Answer» YES, it is possible to apply themes to an ASP.NET application. Developers can specify them in the web.config file with FOLLOWING SYNTAX: <system.web> <pages THEME="Windows7"> </system.web> </configuration> |
|