I've been working on a list with items exceeding the 5000 default list view threshold limit.I know that I can easily go to Central Administration and bump this number up.But my goal was NOT to enable this for the entire Web application. I only wanted to make an exception to this one list. So I started digging into the SPList properties and found a property called "EnableThrottling". Setting this property to "false", allowed me to bypass the 5000 limit for this one list. I used the following PowerShell commands to achieve this: $WebApplication = Get-SPWeb http://<SiteCollectionName> $List = $WebApplication.Lists["My List"] $List.EnableThrottling = $false $List.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