hot questions tagged masterpage+c# - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T13:09:25Zhttp://stackoverflow.com/feeds/tag?tagnames=masterpage%2bc%23&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1749730/renderpartial-conditionally-on-masterpage-in-asp-net-mvc1Renderpartial conditionally on masterpage in asp.net mvcRippo2009-11-17T15:40:19Z2009-11-17T17:31:36Z
<p>Hi I have the following menus defined on my masterpage in a asp.net mvc web application</p>
<pre><code><%Html.RenderPartial("AdminMenu"); %>
<%Html.RenderPartial("ApproverMenu"); %>
<%Html.RenderPartial("EditorMenu"); %>
</code></pre>
<p>However I want to only display the right menu depending on the logged in users role. How do I achieve this?</p>
<p>I am starting to think that my strategy is incorrect so is there a better method for achieving the same thing?</p>
http://stackoverflow.com/questions/1379681/define-derived-class-in-masterpage-c1Define derived class in Masterpage (c#)maxp2009-09-04T14:38:03Z2009-09-04T14:44:21Z
<p>All of the web forms / pages that my project extend on a derived class for the default page class.</p>
<p>I.e. instead of </p>
<p><code>public partial class myfirstpage:System.web.ui.page
{}</code> </p>
<p>i have <code>public partial class myfirstpage:myderivedclass
{}</code> </p>
<p>However in the codebehind of the masterpage, if i do '<code>this.page</code>' it assumes im still using system.web.ui.page.</p>
<p>Anyone know how i can change this my new derived class instead?</p>
http://stackoverflow.com/questions/1402241/forms-authentication-and-sharepoint-profilepropertyloader0Forms Authentication and SharePoint ProfilePropertyLoaderScott Jones2009-09-09T21:37:02Z2009-09-10T08:45:08Z
<p>I am trying to use the ProfilePropertyLoader to display a welcome message in this format:</p>
<pre><code><SPSWC:ProfilePropertyLoader runat="server"/>
Welcome,
<SPSWC:ProfilePropertyValue PropertyName="FirstName" ApplyFormatting="false" runat="server"/>
<SPSWC:ProfilePropertyValue PropertyName="LastName" ApplyFormatting="false" runat="server"/>!
</code></pre>
<p>which I have in my master page.</p>
<p>The site that uses both windows authentication and forms authentication. This works fine when logging in via the windows auth site, but when I attempt it using forms authentication I get an Access Denied error while logging into the site.</p>
<p>I even tried setting permissions of a user to full control in sharepoint but still no luck. It seems to be denying forms users (simple auth against the aspnetdb database in sql server) access to those controls. </p>
<p>Anyone have any ideas?</p>