Tagged Questions

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
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
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
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 …
0
votes
0answers
206 views

jQuery Tabs with Masterpage - space between tabs and tab content

I'm trying use jQueryUI tabs in a content control. The code below works on a page that doesn't use a MasterPage. When I use it in a content control there is a large gray space be …