using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Text;
public partial class JFMaster : System.Web.UI.MasterPage
{
protected void Page_Load(object sender, EventArgs e)
{
CalendarManager.DatesCollection = CalendarManager.GetEvents();
}
protected void calLeftNav_SelectionChanged(object sender, EventArgs e)
{
if (IsPostBack)
Session["SessDate"] = calLeftNav.SelectedDate.ToShortDateString();
Response.Redirect("~/DayView.aspx");
}
protected void calLeftNav_OnDayRender(object sender, DayRenderEventArgs e)
{
foreach (CalendarManager.DatesColl DatesTimes in CalendarManager.DatesCollection)
{
if (e.Day.Date >= DatesTimes.StartDate && e.Day.Date <= DatesTimes.EndDate)
{
e.Cell.BackColor = System.Drawing.Color.FromArgb(254, 233, 168);
}
}
}
}
que está chamando uma outra classe, detalhe isso é um calendário de compromisso estilo outlook.
No visual estudio roda tranquilo, mas quando coloco no servidor da o seguinte error
Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: CS0103: The name 'CalendarManager' does not exist in the current context
Source Error:
Line 18: protected void Page_Load(object sender, EventArgs e)
Line 19: {
Line 20: CalendarManager.DatesCollection = CalendarManager.GetEvents();
Pergunta
rdf2806
Bom pessoal, se alguém pode me ajudar ficaria muito agradecido.
bom é o seguinte, tenho uma aplicação asp.net e dentro dela uma master page:
com o arquivo .csque está chamando uma outra classe, detalhe isso é um calendário de compromisso estilo outlook.
No visual estudio roda tranquilo, mas quando coloco no servidor da o seguinte error
Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: CS0103: The name 'CalendarManager' does not exist in the current context
Source Error:
Line 18: protected void Page_Load(object sender, EventArgs e)
Line 19: {
Line 20: CalendarManager.DatesCollection = CalendarManager.GetEvents();
Line 21: }
Line 22:
Source File: e:\HTDOCS\WEB\rodolfo\Novo\Fontes\EPM\processos\calendario\JFMaster.master.cs Line: 20
se alguém pode me ajudar, ou já passou por isso e tem uma ideia de como resolver ficaria muito grato!
Att.
Rodolfo Ferreira de Oliveira
Link para o comentário
Compartilhar em outros sites
3 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.