0
votes
3answers
58 views
How to load content pages async using jQuery?
TGIF,
I have a website I'm developing which is using ASP.NET masterpage/sitemap/content pages setup. I hate the "blinking" the site does when navigating between content pages using the asp:menu …
0
votes
2answers
24 views
Early response termination when using an ASP.NET Master Page
I have a page which needs to terminate execution of it's code (which is run at render) but not stop the execution of the MasterPage.
The problem is this,
page 'Default.aspx' uses the masterpage …
1
vote
4answers
63 views
how to display none through code behind
I have tried this
login_div.Style("display") = "none";
But it's not working.how can I set the display of the div to none through code behind,
in aspx I have a div:
<div id="login_div" …
0
votes
3answers
32 views
how can i insert login control on the top of default page
in my master page there is a login status when i click on it the page is redirected to login page.now i want to create login control in the home page itself so that users dont have to visit loginpage …
0
votes
1answer
30 views
Masterpage, Intelligencia url rewrite and updatepanel = possible ?
Hello all,
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 …
0
votes
2answers
52 views
State in ASP.net Master Page
We have a bug that we are trying to fix. It looks like one user can see another users data it they hit the same aspx page at the same time.
I was wondering: If we store data in a property on the …
3
votes
4answers
101 views
Are master pages the way to go?
I may be nuts, but master pages scare me because I fear that once I am locked into using a master page, I will encounter a situation where I will want to inherit only 90% of the visual content of the …
0
votes
3answers
117 views
Master Page getting Could Not Load Type error when publishing
Everything works find locally, but when I publish my asp.net application to a remote server I get the following error:
Server Error in '/' Application.
Parser Error
Description: An error occurred …
0
votes
1answer
59 views
Programmatically define a nested masterpage’s master, Is it possible?
Currently I have a site that is set up using a masterpage and a nested master page. The master page setups up the header and footer info. The nested masterpage is used once logged into the site.
…
0
votes
1answer
55 views
Override ASP.NET WebForms MasterPage Header Render Function for SEO
Our ASP.NET WebForms MasterPage is making a muck of our meta data and title. If you go to http://beta.orcsweb.com you will notice our meta tags don't have line breaks and the proper formatting, and …
1
vote
1answer
62 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 removing the reference …
0
votes
2answers
178 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.gif" />
and I …
0
votes
2answers
42 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 see the controls …
1
vote
3answers
78 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 help.
0
votes
1answer
25 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 Transfer(object …
