Recently I faced an Issue in MS CRM2013 while migrating application form other ports to default PORT under MS CRM website (under crmapppool).
Some applications were not working at all.After some analysis I came to know that controls view state was not preserving for the application(I do not know why).
By enabling the viewstate at Page level resolved this issue.
EnableViewState="true"
Example :
<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
CodeFile="Default.aspx.cs" Inherits="_Default" EnableViewState="true" %>
Hope this helps,
Some applications were not working at all.After some analysis I came to know that controls view state was not preserving for the application(I do not know why).
By enabling the viewstate at Page level resolved this issue.
EnableViewState="true"
Example :
<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
CodeFile="Default.aspx.cs" Inherits="_Default" EnableViewState="true" %>
Hope this helps,
No comments:
Post a Comment