0

Is there any template site out there that has templates utilizing specifically:Asp.net button,asp.net gridview, asp.net textbox , asp.net menu, ajax control toolkit accordion, ajax control toolkit tabs.

Has applied sample css to show what can be done to make a web application look professional that i can then leverage?. i have seen millions of templates that use css and html and images and they look good but none that are using asp.net controls.. and look good. Any websites or an example of a descent site that utilizes these controls and makes them look realy good is welcome. thanks, Damo

4

3 回答 3

0

您可能想研究 .NET 皮肤和主题。我很确定您可以在 Microsoft 的网站上找到示例,或者其中一本 MCPD 考试准备书会有所帮助。

.NET 皮肤和主题

于 2012-08-31T19:08:14.930 回答
0

你可以试试这个网站,他查看代码并执行

链接: http ://quickstart.developerfusion.co.uk/quickstart/aspnet/

于 2012-08-31T19:08:16.473 回答
0

我最终在所有 varous div 上使用 css 着色,如下所示,半径边框如下所示,最后 CSS 到我的 gridviews。现在看起来真的很好。我可能会将所有 asp.net 按钮更改为图像按钮并为它们提供图标。谢谢达摩

.TabControls

{




    margin-top:2px;  
    margin-bottom:2px;
    margin-right:2px;
    margin-left:2px;

    padding-top:2px;
    padding-bottom:2px;
    padding-right:2px;
    padding-left:2px;     
    width: auto;

    border-width: 1px;  
    border-style: solid;  
    border-radius: 5px;

        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#99CCFF'); /* for IE */
    background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#9CF)); /* for webkit browsers */
    background: -moz-linear-gradient(top,  #FFF,  #9CF); /* for firefox 3.6+ */ 
    height:120px;



}
于 2012-09-19T20:05:24.720 回答