hot questions tagged masterpage+c# - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T13:09:25Z http://stackoverflow.com/feeds/tag?tagnames=masterpage%2bc%23&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1749730/renderpartial-conditionally-on-masterpage-in-asp-net-mvc 1 Renderpartial conditionally on masterpage in asp.net mvc Rippo 2009-11-17T15:40:19Z 2009-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>&lt;%Html.RenderPartial("AdminMenu"); %&gt; &lt;%Html.RenderPartial("ApproverMenu"); %&gt; &lt;%Html.RenderPartial("EditorMenu"); %&gt; </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-c 1 Define derived class in Masterpage (c#) maxp 2009-09-04T14:38:03Z 2009-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-profilepropertyloader 0 Forms Authentication and SharePoint ProfilePropertyLoader Scott Jones 2009-09-09T21:37:02Z 2009-09-10T08:45:08Z <p>I am trying to use the ProfilePropertyLoader to display a welcome message in this format:</p> <pre><code>&lt;SPSWC:ProfilePropertyLoader runat="server"/&gt; Welcome, &lt;SPSWC:ProfilePropertyValue PropertyName="FirstName" ApplyFormatting="false" runat="server"/&gt; &lt;SPSWC:ProfilePropertyValue PropertyName="LastName" ApplyFormatting="false" runat="server"/&gt;! </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>