al momento de subirlo al hosting me empezo a arrojar errores.
error:
1- me solIcito agregar EN EL WEB.CONFIG: <customErrors mode="Off"/>
2- el hosting trabajaba con framework2.0 por ende tube que quitar el codigo del web.config : <compilation debug="true" targetFramework="4.0"/>
3- System.Web.UI.WebControls; no aceptaba : IncludeStyleBlock, en el menu, asi que lo borre del menu.
4- y ultimo , en el site.master.cs
me arroja el siguiente error:
-CS0234: The type or namespace name 'Linq' does not exist in the namespace 'System' (are you missing an assembly reference?)
Line 3: using System.Linq;
mi codigo es el siguente:
Código:
espero me ayuden , garcias! using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class SiteMaster : System.Web.UI.MasterPage { protected void Page_Load(object sender, EventArgs e) { } }