calendar list dropdown - error
Windows Server Forum Index Windows Server
Server discussion on Windows platform.
 
 FAQFAQ   MemberlistMemberlist     RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
 
Google
 
Web winserverhelp.com
calendar list dropdown - error

 
Post new topic   Reply to topic    Windows Server Forum Index -> Portal Server Development
Author Message
jrmcdona
Guest





Posted: Wed Jan 12, 2005 9:49 am    Post subject: calendar list dropdown - error Reply with quote

Does anybody see anything wrong with this code?? It is causing an error!
Thanks for your help!

ddlCalendars = new DropDownList();
ddlCalendars.Items.Add(new ListItem("please select", "0"));


SPWeb spweb =
Microsoft.SharePoint.WebControls.SPControl.GetContextWeb(this.Context);

SPListCollection splists = spweb.Lists;
foreach (SPList list in splists)
{
if(list.BaseTemplate == SPListTemplateType.Events)
{
ddlCalendars.Items.Add(new ListItem(list.Title, list.ID.ToString()));
}
}

//this.ddlCalendars.ID = this.ListID;
Controls.Add(ddlCalendars);
Back to top
jrmcdona
Guest





Posted: Wed Jan 12, 2005 10:47 am    Post subject: RE: calendar list dropdown - error Reply with quote

Well, i figured out it was a permissions error. I need to most likely create
a custom policy.

"jrmcdona" wrote:

Quote:
Does anybody see anything wrong with this code?? It is causing an error!
Thanks for your help!

ddlCalendars = new DropDownList();
ddlCalendars.Items.Add(new ListItem("please select", "0"));


SPWeb spweb =
Microsoft.SharePoint.WebControls.SPControl.GetContextWeb(this.Context);

SPListCollection splists = spweb.Lists;
foreach (SPList list in splists)
{
if(list.BaseTemplate == SPListTemplateType.Events)
{
ddlCalendars.Items.Add(new ListItem(list.Title, list.ID.ToString()));
}
}

//this.ddlCalendars.ID = this.ListID;
Controls.Add(ddlCalendars);
Back to top
 
Post new topic   Reply to topic    Windows Server Forum Index -> Portal Server Development All times are GMT
Page 1 of 1

 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum




New Topics Powered by phpBB