I have below my designer code ..
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<%@ Page Language="C#" inherits="Microsoft.SharePoint.WebPartPages.WebPartPage, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Register tagprefix="WebPartPages" namespace="Microsoft.SharePoint.WebPartPages" assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Register tagprefix="WebParts" namespace="QS.SharePoint.WebControls.WebParts" assembly="QS.SharePoint.EventCalendarList, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5242205e2f823a28" %>
<html dir="ltr" xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta name="WebPartPageExpansion" content="full" />
<meta name="ProgId" content="SharePoint.WebPartPage.Document" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>DB</title>
</head>
<body>
<form id="form1" runat="server">
<WebPartPages:SPWebPartManager runat="server" id="SPWebPartManager">
</WebPartPages:SPWebPartManager>
<WebPartPages:WebPartZone id="g_7A9120292BC3473792FEDF170F3916AE" runat="server" title="Zone 1">
<ZoneTemplate>
<WebParts:EventCalendarListWebPart runat="server" FirstDayOfWeek="Default"
ListName="Calendar" SiteUrl=""
NumDaysInEventListing="3" ID="g_095dc4fc_c2ac_4e33_8ff5_8142e32bc7e5"
ShowCalendar="True" Description="Displays events in a calendar and a list."
ShowListing="True" Title="Event Calendar Listing" __MarkupType="vsattributemarkup"
__WebPartId="{095DC4FC-C2AC-4E33-8FF5-8142E32BC7E5}"
WebPart="true" __designer:IsClosed="false" partorder="2">
</WebParts:EventCalendarListWebPart>
</ZoneTemplate></WebPartPages:WebPartZone>
</form>
</body>
</html>
I am showing a calander webpart in my share point site ... initialy i had issue with scriptmanager which is not loaded. But i resolved it writting code to load script manager in the background.
But i am unable to see my calander properly looks like css not loaded.
I have put the css files in style folder. But no hope!
Please let me know a resolution..
<link rel="stylesheet" type="text/css" href="../styles/style.css" />– utkai Jul 12 '12 at 7:51