1
vote
2answers
20 views
Ninject and Master Page injection
First off, I'm using Ninject 2.0
I have my master page which I would like to inject into but I'm not quite sure how. What I tried was created a class that derives from System.Web.Mvc.ViewMasterPage …
0
votes
1answer
53 views
[ASP.NET MVC] What would cause a partial view to suddenly not be found?
I'm baffled. My site randomly throws the following error:
System.Web.HttpUnhandledException: Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> …
1
vote
1answer
34 views
Can the MasterPage be designated from the Controller?
I have a couple different userTypes (Admin, User) and a MasterPage for each. I am beginning to create some Views that will be used by both userTypes where i would like to assign the MasterPage …
0
votes
4answers
54 views
How do I inject plain text into an asp.net MVC1 master page from a child?
All the searches I've come up with talk about regular asp.net where there is a code behind page or you are accessing an asp.net control of some sort.
Since there is no code behind in the master page …
1
vote
5answers
52 views
Something like viewstate and session
The problem that I am having is as follows:
I currently have a custom class that generates buttons and places them on a placeholder on a master page.
The events for these buttons put specific values …
0
votes
1answer
21 views
MasterPage INSIDE iFrame
any remarks? Doesn't seem to be any info around. Doesn't seem to work either.
1
vote
2answers
73 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:350px;">
…
1
vote
1answer
65 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 from a content …
1
vote
2answers
45 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").FindControl("home");
…
0
votes
4answers
86 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 KorisnickoIme = …
2
votes
2answers
25 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 …
0
votes
1answer
39 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 creating a class. …
0
votes
2answers
100 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 would I go about doing …
0
votes
1answer
31 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" ClassName="MenuButton" %>
…
0
votes
1answer
31 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):
Compiler Error Message: …
