active questions tagged masterpage+c# - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T16:31:18Z http://stackoverflow.com/feeds/tag/masterpage+c# http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1889383/masterpage-intelligencia-url-rewrite-and-updatepanel-possible 0 Masterpage, Intelligencia url rewrite and updatepanel = possible ? Mark 2009-12-11T16:58:31Z 2009-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-o 1 ASP.Net MVC: How can I easily change the tab color of my navigation menu based on the tab that I'm on? Ben 2009-12-08T07:32:43Z 2009-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-mvc 2 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/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> 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>