0
votes
4answers
41 views
How do you use Models in a master page with ASP.NET MVC?
public ActionResult Index(){
var dataContext = new DataEvidencijaDataContext();
MembershipUser myObject = Membership.GetUser();
string KorisnickoI …
1
vote
2answers
39 views
Find a UnorderedList <UL> control inside a master page from a content page in asp.net
Hai guys,
I want to find a UL control and then find a LI within that UL and assign a css class to that from a content page....
<ul id="mainMenu" runat="server" style="width:35 …
1
vote
2answers
35 views
change id of a server control in asp.net
Hai guys,
I used find control to find a list item of an unoreder list inside a master page from content page using this,
Control home = this.Page.Master.FindControl("list").FindC …
0
votes
1answer
28 views
Set Property Value on Master Page from Content Page
Hello,
I tried following the advice posted here:
http://stackoverflow.com/questions/1071920/set-property-value-on-master-page-from-content-page.
Specifically the last post about …
1
vote
1answer
34 views
apply css for a HTML Generic control like <UL> and <LI> in asp.net
hai guys,
I dont know how to apply css for a HTML Generic control like <UL> and <LI> given runat="server" in asp.net.... I am finding the <li> in a master page …
2
votes
2answers
22 views
Unable to generate a custom path in ASP.NET MVC Master Pages.
I am working in an ASP.NET MasterPage and am having trouble with <link href="..." />.
I am trying to substitute in a stylesheet with a specific name:
<link href="/Conten …
0
votes
1answer
28 views
User controls called from child pages do not appear on master page.
Hey,
I have a custom user control in ASP.net:
MenuButton.ascx:
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="~/MenuButton.ascx.cs" Inherits="MenuButton" ClassNam …
0
votes
1answer
19 views
Where does error CS0433 “Type ‘X’ already exists in both A.dll and B.dll “ come from?
When I run a webapp from Visual Studio 2008 SP1 using the internal web server (not IIS) I receive the above mentioned error.
The full error (source file Default.aspx.cs):
Comp …
0
votes
2answers
70 views
Login controls in an ASP.NET MVC master page
I have an ASP.NET MVC 2 web site in which I'd like to place login controls in the master page. I want any validation error messages to appear in the master page as well. How woul …
1
vote
2answers
46 views
Need workaround for .Net Master Page Name Mangling
I'm evaluating converting an old frameset based asp.net website to use master pages. The only thing holding me back is the huge amount of work it will take to update every page to …
0
votes
3answers
30 views
Is changing the Master Page behavior “mode” from Content Page a bad idea?
I have a Master Page that has two different "modes" of behavior: "strict input restrictions" and "relaxed input restrictions". The code for what these two modes mean is completely …
0
votes
2answers
30 views
Unwanted caching of usercontrols and masterpages forcing iisreset
My setup is a standard Windows 7, Visual studio 2008 and IIS 7.5 and I suffer from unwanted caching of usercontrols and masterpage files. Often but not always when I make changes i …
0
votes
3answers
53 views
.net templates which page am I on?
Hi,
I'm curious to know that using .net 2.0 with a master page if there is a way that I can pick up what page I am on so that i can use it to style a tab?
My master page has a na …
1
vote
4answers
83 views
How do/can designers work with ASP.NET
On most projects I've been one, designers has produced HTML code, then developers turned it into ASP.NET, including master-pages etc that should really be a part of design.
After …
0
votes
1answer
51 views
vertical and horizontal scrolls not working
I have a master page which is using the style sheet..
My problem is that my vertical scrollbar does not work and horizontal scrollbar is not showing when i restore down the page.
…
