page

Need to have separate "complete" Drupal theme for each page on a site.

I want to build a Drupal demonstration site where I can create several custom themes and display each on a separate page of the site. Access can be either via links or menu items. The "simpler" the solution the better. ...

When wil be the Google Update?

When will be the exact date of Google's update for the Page Rank? Usually it change every quarter but this will be the end of the 2nd quarter now. ...

PRoblem with shadowbox and ie

Hy I am trying to open a external page in a shadowbox holder the script is nt that complex. In mozilla it work`s grate but IE all versions it does not load the page or it does not display it because all that I see is a lack screen Can anyone help me pls <script type="text/javascript" src="js/moving-boxes.js"></script> <script type='text...

SQL Server trace - translating PAGE information to actual resource

I am researching deadlocks that are happening in our application. I turned trace on for 1204, 1205 and 3605. I got the deadlock trace alright. But I am unable to figure out the resource it is deadlocking on. I have read many forums and they all say that the trace should contain something called a KEY/RID which would point to the resource...

How do I set a picture as the background in ASP.NET?

I am unable to get the background picture to show in my pages. I am trying to do this in the master page using CSS. I have a CSS which contains the following: body { background-image: url(../images/background.jpg) no-repeat; background-attachment: fixed; margin-top: 0px; } I know the CSS is being read because all other styl...

Flash in IE and Mozilla for asp.net page with master page and content page

Hi I have a master page and a child page and have placed the javascript code inside the child page for flash movie. The problem is the movie seems working when there is a alert on, without at least one alert msg, the code does not work, I am sure you people can solve, I can see that the following code works well in both Mozilla and IE, ...

Jquery .load need page refresh but but also return false - help

Hi folks this is prob quiet simple but not sure how to do it. I am loading pages into a div a simple like this: $('.pageLink').click(function() { var pagetoload = ($(this).attr('href').substring(5)); $('#adminArea').load(pagetoload+'.php'); return false; }); That works no probs at all. Only thing is that I am using CKEditor on "seve...

Google Page Rank Calculation

I had developed a site. While I Google search it, it comes up in 1st for 3 different search terms but it still hasn't got a page rank. Whats the meaning of this? ...

How to make Wordpress show only one post on the front page with comments, and comment form?

I did the following to display a single post in my home page: home.php: <?php get_header(); query_posts('posts_per_page=1'); //returns only the front page ?> <div id="content"> <?php /* Run the loop to output the posts. * If you want to overload this in a child theme then include a file * called loop-index.php and th...

Django how to set main page

hello, i want to set a main page or an index page for my app. i tried adding MAIN_PAGE in settings.py and then creating a main_page view returning a main_page object, but it doesn't work Also, i tries to add in the urls.py a declaration like (r'^$', index), where indexshould be the name of the index.html file on the root (but it obvio...

Problem in refershing the outputpanel +jsf

Hi All, Ive a problem in refreshing the outputpanel entire page is getting refersed instead of panel. Here is my code <h:selectOneRadio id="radio1Id" value="#{bean.options}" valueChangeListener="#{bean.onChange}"> <f:selectItem itemLabel="Yes" itemValue="Yes" /> <f:selectItem itemLabel="No" itemValue="No" /> <a4j:support event...

How to avoid sql server page fragmentation in this scenario?

I want to order SQL Inserts into a table to optimize page use by avoiding fragmentation as much as possible. I will be running a .net Windows Service, which every 2 hours will take some data from a database and optimize it for future queries. A varchar(6000) column is involved, though I estimate it will rarely go beyond 4000 bytes. In f...

Will a page taking 2-3 mins to render cause a javascript 'taking too long' warning

I'm using the jQuery document ready method - $(function() If the page takes too long to render (say 2mins+), will this be the reason for the page throwing a javascript taking too long to execute error/warning? ...

How do I display an animated image during Page Load using jQuery

Hi there, I have an ASP.NET page that takes a long time to load due to the loading of multiple user controls. Is there a way where I can show a loading animation using jQuery while the page is loading? Thanks. ...

How to "push" view controller to be 2nd page in page control?

How would I push my 2nd view controller to be the 2nd page in page control. I am using scroll view too? Any help pleaseeee? ...

In Java a socket requesting a web page always times out

I'm requesting a webpage with sockets like this: Socket sock = null; PrintWriter out = null; BufferedReader in = null; try { sock = new Socket( "www.overvprojects.nl", 80 ); out = new PrintWriter( sock.getOutputStream(), true ); in = new BufferedReader( new InputStreamReader( sock.getInputStream() ) ); } catch ( UnknownHost...

Page width varies according to Iframe size?

Hi, I have a requirement where i need to display a aspx page say login.aspx in two different Iframes of different width without scroll bar. E.g. Login.aspx should get displayed in iframe of width 800 and 700 without scroll bar. I know I should reduce the UI elements width but the width of the UI elements should vary for Iframes. Is it ...

ASP.Net intelligent scaling page based on page content

Like iPhone Safari Browser or Firefox (Ctrl + Scrolling), I need intelligent scaling where not only Divs but also font-size and images are scaled based on the viewable area of the screen. I need to implement this in ASP.Net. Any suggestion? Regards Thant Zin ...

How to change permissions for a single page or story?

In drupal, how can I change the permissions on a single page or story? I want to change one page or story so that only admins can post comments and all users can see those comments but can't post any of their own. Thanks. ...

XSLT processing problem with asp specific code

I have asp file with code below: <html> <head> <link rel="stylesheet" href="<%=bb_style%>"/> <title>asdf</title> </head> I need to include title from this file into another asp file formed by xslt transformation. I use this code: <xsl:value-of select="document(content)/html/head/title"/> But I have nothing ret...