To apply new masterpage to existing sites, then you can use PowerShell. Open SharePoint Powershell management console and run the script.? $site = Get-SPSite http://sharepoint $site | Get-SPWeb -limit all | % { $_.CustomMasterUrl = "/_catalogs/masterpage/CUSTOM.master" $_.MasterUrl = "/_catalogs/masterpage/CUSTOM.master" $_.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