示例#1
0
 public static string GetRedirectUrl(string type)
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxCmsService), new NameValueCollection
     {
         { "type", type }
     }));
 }
示例#2
0
 public static string GetCreateSiteUrl()
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxCreateService), new NameValueCollection
     {
         { "type", TypeCreateSite }
     }));
 }
示例#3
0
 public static string GetPluginDownloadUrl()
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxOtherService), new NameValueCollection
     {
         { "type", TypePluginDownload }
     }));
 }
示例#4
0
 public static string GetSiteTemplateUnZipUrl()
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxOtherService), new NameValueCollection
     {
         { "type", TypeSiteTemplateUnZip }
     }));
 }
示例#5
0
 public static string GetGetLoadingChannelsUrl()
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxOtherService), new NameValueCollection
     {
         { "type", TypeGetLoadingChannels }
     }));
 }
示例#6
0
 public static string GetCountArrayUrl()
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxOtherService), new NameValueCollection
     {
         { "type", TypeGetCountArray }
     }));
 }
示例#7
0
 public static string GetLoadingGovPublicCategoriesUrl()
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxWcmService), new NameValueCollection
     {
         { "type", TypeGetLoadingGovPublicCategories }
     }));
 }
示例#8
0
 public static string GetRecoveryUrl()
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxBackupService), new NameValueCollection
     {
         { "type", TypeRecovery }
     }));
 }
 public static string GetLoadingAreasUrl()
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxSystemService), new NameValueCollection
     {
         { "type", TypeGetLoadingAreas }
     }));
 }
示例#10
0
 public static string GetGatherFileUrl()
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxGatherService), new NameValueCollection
     {
         { "type", TypeGatherFile }
     }));
 }
示例#11
0
 public static string GetTagsUrl(int siteId)
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxCmsService), new NameValueCollection
     {
         { "type", TypeGetTags },
         { "siteId", siteId.ToString() }
     }));
 }
示例#12
0
 public static string GetTagsUrl(int publishmentSystemId)
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxCmsService), new NameValueCollection
     {
         { "type", TypeGetTags },
         { "publishmentSystemID", publishmentSystemId.ToString() }
     }));
 }
示例#13
0
 public static string GetUploadWordMultipleUrl(int publishmentSystemId)
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxUploadService), new NameValueCollection
     {
         { "publishmentSystemID", publishmentSystemId.ToString() },
         { "isWordSwfUpload", true.ToString() }
     }));
 }
示例#14
0
 public static string GetContentPhotoUploadSingleUrl(int publishmentSystemId)
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxUploadService), new NameValueCollection
     {
         { "publishmentSystemID", publishmentSystemId.ToString() },
         { "isContentPhoto", true.ToString() }
     }));
 }
示例#15
0
 public static string GetContentPhotoUploadMultipleUrl(int siteId)
 {
     return(PageUtils.GetAjaxUrl(nameof(AjaxUploadService), new NameValueCollection
     {
         { "siteID", siteId.ToString() },
         { "isContentPhotoSwfUpload", true.ToString() }
     }));
 }