Create Sharepoint 2010 List Programmatically with custom fields
Create Sharepoint 2010 List Programmatically with custom fields
Code Behind:-
SPSite _site;
SPWeb _myWeb;
bool gTemplateExists = false;
string _strList = "ListName";
_site = new SPSite(@"SiteUrl");
_myWeb = _site.OpenWeb();
//check Whether list already exist or not.
if (IsListExists(_myWeb, _strList)...
[read more]
Submit a review:
Login required.