Changing UI Version from 4 to 3 will give a look and feel like Sharepoint 2007 Site. Changing it back to 4 will make Visual upgrade to Sharepoint 2010 Site. $web= Get-SPWeb http://server/site/ $web.UIVersion=4 $web.UIVersionConfigurationEnabled=$true $web.Update()
Scenerio: I need your help in designing tab control in asp.net .My requirement is I need a tab control in asp.net (C#) like for example goto my computer ,right click c drive and select properties.we get tabs like general,security etc....... like that i need to design one tab control(no need of any rightclick) in my web page and the database table columns should come as tabs and inseide the tab data of that particular column should come. Example:Employee master tab1:Employee name.........his name in the tab tab2:Age.............his age tab3:Address........his address Solution: You can do this using a simple div <style type="text/css"> .tabs { position: relative; height: 20px; margin: 0; ...
Comments
Post a Comment