active questions tagged masterpage+c# - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T16:31:18Zhttp://stackoverflow.com/feeds/tag/masterpage+c#http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1889383/masterpage-intelligencia-url-rewrite-and-updatepanel-possible0Masterpage, Intelligencia url rewrite and updatepanel = possible ?Mark2009-12-11T16:58:31Z2009-12-14T17:44:40Z
<p>Hello all,</p>
<p>I cannot seem to get my updatepanel to work while using urlrewrite. It does work in terms of code execution, but it refreshed my whole page instead of the usercontrol which contains the updatepanel. Am I missing some very basic things here?
I hope someone can help me thanks for reading!
Kind regards,
mark</p>
http://stackoverflow.com/questions/1865257/asp-net-mvc-how-can-i-easily-change-the-tab-color-of-my-navigation-menu-based-o1ASP.Net MVC: How can I easily change the tab color of my navigation menu based on the tab that I'm on?Ben2009-12-08T07:32:43Z2009-12-08T07:59:32Z
<p>I want to implement my navigation tabs somewhat like the ones on this site, and I've heard that this was built using ASP.Net MVC. If I'm on stackoverflow.com/users, than the "Users" menu tab is orange and all others stay grey, same if a different tab is selected.</p>
<p>I am pretty good with manipulating the css to change color when it's hovered or selected, etc, and adding/removing/authorizing items in the menu container, but not familiar with how to change the color of the tab based on the tab page that I'm on. Any quick and dirty way to accomplish this?</p>
http://stackoverflow.com/questions/1749730/renderpartial-conditionally-on-masterpage-in-asp-net-mvc2Renderpartial 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/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>
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>