1
vote
2answers
22 views
View Control name concatenated with ClientID and masterpage control name in ASP.NET MVC
I am working with ASP.NET MVC application.
I have One master page having one contentplaceholder.
I have one view placed in the contentplaceholder of master page.
i have few textB …
0
votes
1answer
42 views
Handle the button onclick event in masterpage in ASP.NET MVC
I am working with master page in ASP.NET (3.5) MVC Framework (1.0).
I am having one master page and 4 MVC Views in my application.
I have placed these four views in the contentplac …
1
vote
2answers
41 views
Creating a Visual Studios 2010 ASP.NET application without a Masterpage
I've spent a decent amount of time on the web and messing around in the settings and I haven't been able to find a way to create a project in VWD 2010 without a masterpage. Just re …
0
votes
4answers
21 views
set body id to current file name in .net
I am not a .Net guy but trying to get update an existing .net site. Trying to set up a unique id for the body tag even though I am using a master page.
<body id="<% page_nam …
1
vote
2answers
77 views
ASP.NET MVC - pull and populate masterpage contents from database?
Hello all, how can I pull masterpage content from the database and pass that into the masterpage so that my Views inherits from it? This is an example:
Clients to the website will …
0
votes
1answer
18 views
MasterPage has a control in it, and the controls OnClick comes back as method not found in ASP.NET
I have a linkbutton in my masterpage:
<asp:LinkButton runat="server" OnClick="Transfer" Text="Transfer"></asp:LinkButton>
in my code behind
protected void T …
0
votes
2answers
27 views
Get all controls from MasterPage ChildPage
Hi.
Is it possible to get all controls from a ChildPage from the MasterPage the child is nested in?
I need all the controls within my form tag, but when i use a MasterPage i cant …
0
votes
2answers
96 views
Relative Path in master page for img tag
I have a tag in a master page.
I use this master page in many folders. So the src path of the tag should be different for each folder.
Here is my code :
<img src="images/1.gi …
0
votes
7answers
129 views
Simple jQuery works in HTML, not ASP.NET
jQuery noob here, trying to produce alternating row background colors. This works in HTML:
<script type="text/javascript">
$(document).ready(function() {
…
0
votes
3answers
54 views
How to call a method of an user control from a page in asp.net 2.0 ?
Hi all,
I have a usercontrol used in a masterpage.
I have added a page with the masterpage.
Now I need to call a method of the user control from the page.
How to do this? Please h …
0
votes
1answer
97 views
MasterPage and ViewState (VB.Net)
Ok So i have written methods to override the LoadPageStateFromPersistenceMedium and SavePageStateToPersistenceMedium methods. now the problem is that i am using a masterpage, so ho …
0
votes
1answer
66 views
Proper way to hide place holders in a SharePoint 2007 Master Page?
I am working on a specialized instance of MOSS for a client where What I am wanting to do is hide elements on the master page. In particular, I want to hide the main top navigation …
0
votes
1answer
119 views
ASP.NET User control on a master page renders behind my main content when viewed in IE7
So I have a user control in my master page. When it's viewed in IE7 (or IE8 Compatibility mode), it renders behind the page content from the ContentPlaceHolders. I've tried manua …
1
vote
4answers
117 views
Define derived class in Masterpage (c#)
All of the web forms / pages that my project extend on a derived class for the default page class.
I.e. instead of
public partial class myfirstpage:System.web.ui.page
{}
i ha …
1
vote
2answers
57 views
override form name of masterpage vb.net
It seems like I can't set the id or name of the form in my masterpage. [it's always "aspnetForm"]
Is there a way to override the uniqueID property of form?
I tried to create a cl …
