DIR2\bgr.png' is denied.
An unhandled exception was generated during the execution of the current
web request. Information regarding the origin and location of the
exception can be identified using the exception stack trace below.
|
[UnauthorizedAccessException: Access to the path 'C:\inetpub\wwwroot\Test2\News\File\images\DIR1\DIR2\bgr.png' is denied.] System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) +10546931 System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy) +2580 System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy) +138 System.IO.FileStream..ctor(String path, FileMode mode) +91 System.Web.HttpPostedFile.SaveAs(String filename) +151 Telerik.Web.UI.PostedFile.SaveAs(String fileName, Boolean overwrite) +54 Telerik.Web.UI.Widgets.FileSystemContentProvider.StoreFile(UploadedFile file, String path, String name, String[] arguments) +120 Telerik.Web.UI.RadFileExplorer.ProcessUploadedFiles() +959 Telerik.Web.UI.RadFileExplorer.OnLoad(EventArgs e) +169 System.Web.UI.Control.LoadRecursive() +66 System.Web.UI.Control.LoadRecursive() +191 System.Web.UI.Control.LoadRecursive() +191 System.Web.UI.Control.LoadRecursive() +191 System.Web.UI.Control.LoadRecursive() +191 System.Web.UI.Control.LoadRecursive() +191 System.Web.UI.Control.LoadRecursive() +191 System.Web.UI.Control.LoadRecursive() +191 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2428 |
e.Appointment.Start.ToUniversalTime();
e.Appointment.End.ToUniversalTime();
While stepping thru the code the start and end times look ok, meaning they are in UTC however i get the error above
at Exchange\ExchangeSchedulerProvider.cs:line 166
at Telerik.Web.UI.SchedulerProviderBase.Insert(ISchedulerInfo schedulerInfo, Appointment appointmentToInsert)
when trying to create the item.
Can you please help?
i have a radgrid showing header data with a nested detail table.
the header data is inserted/edited via an editForm.
the detail data is inserted/edited via a user control contained in a popup (EditFormType = WebUserControl).
data is submitted from the editForm using an asp.net button whose CommandName property is either "PerformInsert" or "Update".
upon submission of the new header data, i would like for the popup edit control to automatically appear so that detail data can be entered right away instead of having the user expand the newly created header row and then clicking "Add New Detail Record".
how can this be done?
function onTabSelecting(sender, args) {
var multiPage = $find("<%=RadMultiPage1.ClientID %>");
var pageView = multiPage.findPageViewByID(args.get_tab().get_pageViewID());
switch (args.get_tab().get_pageViewID()) {
case "RadPageView2":
//pageView.set_contentUrl("~/pageviews/emailTemplates.aspx");
args.get_tab().get_pageView().set_contentUrl("pageviews/emailTemplates.aspx");
break;
case "RadPageView3":
//pageView.set_contentUrl("~/pageviews/originalEmails.aspx");
args.get_tab().get_pageView().set_contentUrl("pageviews/originalEmails.aspx");
break;
case "RadPageView4":
//pageView.set_contentUrl("~/pageviews/CourtList.aspx");
args.get_tab().get_pageView().set_contentUrl("pageviews/CourtList.aspx");
break;
case "RadPageView5":
//pageView.set_contentUrl("~/pageviews/region.aspx");
args.get_tab().get_pageView().set_contentUrl("pageviews/region.aspx");
break;
case "RadPageView6":
//pageView.set_contentUrl("~/pageviews/listmgmt.aspx");
args.get_tab().get_pageView().set_contentUrl("pageviews/listmgmt.aspx");
break;
case "RadPageView7":
//pageView.set_contentUrl("~/pageviews/subscribers.aspx");
args.get_tab().get_pageView().set_contentUrl("pageviews/subscribers.aspx");
break;
}
// alert("The ID of the selected RadPageView is " + args.get_tab().get_pageViewID());