Web Forms :: Theme Not Working - Live Site

Jan 20, 2010

The theme I'm using is not working in Visual Web Developer, I have the following code in place:

<%@
Page
Theme="MyTheme"
Language="VB"
AutoEventWireup="false"
CodeFile="Default2.aspx.vb"
Inherits="Default2" %>

the theme is getting applied to the live site.

View 3 Replies


Similar Messages:

Asynchronous C# Method Calls In Page Working On Debug, But Not Working On Live Site

Jan 25, 2011

OK Here is the situation:

I have a web app with a table of statistics on our salesmen's customers, and each row has a sparkline graph showing the general trend of the sales data for the last 12 months. Each page shows a particular salesman's customer list, and some of them can have an enormous number of customers = an enormous number of rows = an enormous number of sparklines (e.g. one in particular has 125 and takes 15 seconds to load).

For this reason, jQuery sparklines could not be used - they completely pinned the CPU of a user accessing a page with a lot of sparklines with IE.

So I moved on to using the Google Chart API, which worked much better, except for two issues: 1) it's on a secure site, and the Google Chart API URL is only served over HTTP (solved by using a small wrapper script to download the graph dynamically and re-serve it from our secure server); and 2) on a page with 125 sparklines, it was still very slow due to the number of requests (even when the 0-9 server prefixes are used to maximize the # of available connections).

So my next step beyond this was to try to make each of the "download/grab/re-serve image" method calls asynchronous - and it worked!

...but only on my dev box running in debug mode.

When I pushed it up to the live site, it was faster, but it left some of the images unloaded, which is of course unacceptable.

So here is what I was hoping some SO hotshot would know:

1) Why are my asynchronous method calls working while debugging, but not working on the live site?

2) Is there any easier way to get a large number of sparklines of some sort to load quickly on a secure server without making me want to tear my hair out?

2a.) Does anyone have any experience using the ASP.NET Chart Library? Is this something I should investigate?

2b.) A co-worker suggested I make my own sparkline routine using a 1x1 CSS background image and varying the height. The problems are a) it is completely un-extensible in case we want to make changes; b) it seems hacky as hell (leaves about a bajillion DIVs per sparkline in the markup); and c) I have no idea if it will be fast enough when there are 100-200 of them on one page - what are your thoughts on the feasibility of the 1x1 sprite approach?

View 2 Replies

Configuration :: Site Is Not Showing Any Content At Live Site From Database?

Jun 15, 2010

I am working at a site not orginally devleoped by me. The problem is that all the pages are working fine and have no problem at my local site. but the site is not showing any content at live site from database. Niether it shows an error for it. How can I find the problem?

View 7 Replies

Web Forms :: Theme Changing For Web Site?

Jan 20, 2011

I am now in process doing theme for my web application.

This is how i want my Theme work :Whenever user choose to change the theme, the whole web site theme should changed accrodingly.

Most of the examples that i find out online require to assign the theme in Page_PreInit event in every page. The theme name is store in session variable.

My concern is that is there anyway to assign particular theme to whole web site without having assing it to every page and store the theme into session variable.

View 3 Replies

Web Forms :: Site Theme Based On Url?

Feb 4, 2010

I have a few sites that use the same application but use details to populate the site content such as title, logo and theme based on the URL. These details are stored in a database.

What is the best way to populate these details. I was thinking this should be done in the Global.asax rather then my page.master

I have a master page that is used for all the sites and had the code called ther but it might be better to do the database calls in Global rather then in the master page?

View 3 Replies

Web Forms :: Url Rewriting Not Working On Live Server In Asp.net But Locally Working Fine

Feb 23, 2010

Url rewriting not working on live server in asp.net but locally working fine. but locally it's not case sensitive.

View 1 Replies

Web Forms :: Users To Change The Theme Of Site?

Feb 2, 2011

this is my code, i want my users to change the theme of my site.


[Code]....

View 4 Replies

Web Forms :: Editing Site Design While Live?

Sep 20, 2010

I am looking for a tutorial or more information on creating a Templating system to allow a user to edit the template of a ASP.Net website, Such as creating his or her own 'Skin'.point me in the right direction.

View 6 Replies

Web Forms :: Adding New Pages Without Compiling In Live Site ?

Aug 26, 2010

Recently I have been given assignment to allow admin to add new pages dynamically without need to rebuilding and deploying web site/ project. These pages will be having simple text.

View 4 Replies

C# - Live Site And Holding Side By Side Until Go Live?

Mar 26, 2011

I will shortly be going live with a new .net web application. It will be deployed to a load balanced environment over 5 servers.Before go live there is a holding site on all the 5 servers to which the domain is currently pointing ->Prior to go live, I would like to deploy the new site to 5 servers and for the holding site to remain and for it to be what the public sees. And when the time comes, I can put the new site live with a flick of a switch. I also want the new site to be on the servers so that I can test it prior to go live.I am running in IIS7. This is common practice I presume so what is the easiest way doing that above and achieve installing the new site on the servers will not affecting the holding site. The new site be accessible to me but the holding site be viewed by the general public.

View 1 Replies

MVC :: Mvc Theme And Developing Site Design?

Nov 10, 2010

i wanna learn how to nice appearance my mvc sites. for example i am writing an application vs2010 standart theme of mvc. how can i change css file. do you know nice theme css about this. how can i develope my site design. css knowlange..

View 1 Replies

Configuration :: Application Is Working Fine In Local Environment But Not Working After Push Code In Live

Aug 19, 2010

My application is working fine in local environment but not working after push code in live. My locale environment and hosting environment both are having same configuration. Same app working fine 2 month before but in different domain but same hosting server.

how to check the both config / any possible to run debug mode in hosting server please let me know. below code used in all page for checking user session status but when I click on any link page redirect to login.aspx I think session got timeout. I don't know why session got time frequently, but this issue not happening in local environment (desktop).

[Code]....
[Code]....

View 6 Replies

C# - Change Web Site Theme For Client From MaterPage

Aug 12, 2010

I need to change website theme (css) by clicking button on Master Page.

protected virtual CSSClick (_sender : object, _e : System.EventArgs) : void
{
//Session("Theme") = "Advanced";
}


Google & MSDN didn't gave me the answer :( So no matters on C# or VB.NET , just how to make it ?

View 2 Replies

To Use Css Optimizers To Before To Make Site Live?

May 28, 2010

Is it OK to use css optimizers to before to make site live. When we can't to any other server side compression techniques (gzip, combining, sass, less etc)I want to make CSS file short and readable. How to use these tools without loosing css functionality. what options we should use and what not.

View 4 Replies

Preparing A Database Driven Site Before Going Live?

May 18, 2010

I've got a really good idea for a service I'd like to create for the web, but since I'm new to ASP.NET I'd like to get everything up and running before I go and buy hosting etc.

What I'm curious about is the database side of things.

I don't quite understand how I can create a datebase on my computer for the sake of testing and practicing (Presumably through mssql server) and then just transfer it to a hosting account when I'm ready.

I guess the main part I don't understand is how can I connect to a database on my computer via my application and then change the connection so that it points to the web version when I'm ready.

I know that when you create the database and include it in your project it's not technically inside your project (Right?), but it just seems that the application is very rigid once you've specified the connection.

View 14 Replies

Sitemap Links Don't Work On Live Site Windows Authentication

Feb 19, 2010

I have a intranet site with Windows Authentication. I have 'Administrator' pages in an 'Administrator' folder that will only show for those in the admin group (windows security group) These pages work

I have a folder with sub folders containing reports. These permissions are broken down for each type of report. They have similar role priveleges. When I test the application, I can navigate to the pages. When I deploy the site live on the intranet the links don't return a page. Error missing link 404. Do I need to set something in IIS?

View 1 Replies

Configuration :: Deploying Onto Web Host Server - Debugging Live Site

Oct 4, 2010

Is there any way possible when my site is hosted to some how attach the process so I can debug the errors. Obviously as they are different environments what works in dev doesn't always work in.

View 3 Replies

Adding Pages In Live Site Dynamically Without Redeploying Or Recompiling ?

Aug 26, 2010

Is there some way to add .aspx pages in live asp.net site without need to recompile or redeploy ?

View 2 Replies

Lost Connection Does Not Return Error With JQuery AJAX On Live Site But On Dev?

Nov 16, 2010

I am using the following code to post data from a asp.net 2.0 site to an asp.net 2.0 web service that post the data to a server:

$.ajax({
type: "POST",
url: "SynchroniseCustomers.asmx/synchroniseCustomers",
data: JSON.stringify(customerObj),

[Code]....

Thing is, if I run this locally and drop my internet connection the web service returns a 500 error (like I want it to do) and deleteCustomer(customer.id); is not called. However, on the live site if I drop my connection the web service does not return an error and deleteCustomer(customer.id); is called even if I don't have a connection to the internet (customer gets deleted from local database without being posted to the web server).

View 2 Replies

Want To Include Microsoft AntiXss V1.5 Library On Live Site Running In A Medium Trust Setting?

Apr 6, 2010

I want to include Microsoft AntiXss V1.5 library on my live site running in a medium trust setting.However, I got an error something like:Required permissions cannot be acquired.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Security.Policy.PolicyException: Required permissions cannot be acquired.I tried this in full trust setting on my development machine and everything works good.Looks like this will run only in full trust configuration.

View 2 Replies

Throwing Exception Message Giving Internal Server Error HTTP Code 500 On Live Site

Oct 4, 2010

using vb.net/asp.net 2005

when a user enters a bad email I am doing a check on this and throwing an exception message as follows, this works fine on the test site but for some reason the same code on the live site gives a "internal server error" (http code 500). The code below:

[Code]....

not certain why this is happening, I assume that it's some server or config difference between the test and live sites. has anyone seen this before? For a quick fix i'm registering javascript alert and showing the same text so it works but I would like to figure out why the code above is not working.

View 1 Replies

Security :: Admin Node Doesn't Show On Live Site With Proper Login - VS Express 2008?

Jan 8, 2010

This is my third site that I use role management, but the first time this happens. I have two roles: Member and Admin. If Admin user login, Admin node on sitemap shows. It works very well on my local machine in Visual Studio Express 2008 and in Visual Studio Team 2008. But once I deploy files to live site, even admin login, the Admin node doesn't show. I have a Member management page from which I may see member's role, and I can see that user name is in the role Admin. What could be wrong?

I used ASP.Net Configuration manager to create roles, users, and access roles. Here is the code:

in general site.config

<siteMap enabled="true " defaultProvider="XmlSiteMapProvider">
<providers>
<add name="XmlSiteMapProvider" description="Default SiteMap provider." type="System.Web.XmlSiteMapProvider"
siteMapFile="Web.sitemap" securityTrimmingEnabled="true"/>

[Code]....

View 6 Replies

AJAX :: Update Panel Not Working In Live?

Sep 29, 2010

I have a button that updates a datagrid that is in an update panel and everything works swimmingly in the dev area but when i publish it it just doesnt work.

appart from that everything else on the page works as normal

View 2 Replies

Security :: User Profiles Not Working Once Website Goes Live?

Dec 1, 2010

I have just put my first ASP.Net site live on the internet but im having problems with my login. When i try to login my sit is throwing an error.

The SSE Provider did not find the database file specified in the connection string. At the configured trust level (below High trust level), the SSE provider can not automatically create the database file.

I have run my script from visual studio so the profiles are there but i cant login?

View 4 Replies

Aspx Site Not Working Out Site Of Development Environment

Oct 27, 2010

I made an aspx site with .net 4.0 framework through visual studio and it worked perfectly in the development environment but when I upload it to the server and try to run it I get this error: Server Error in '/' Application. Runtime Error Does anyone have an idea on how to fix this?

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved