How can I make the background color of a div extend past the page fold?
Example:
--
<html>
<head>
<style>
* {
margin: 0px;
padding: 0px;
}
#container {
background-color: #ccc;
clear: both;
height: 100%;
width: 50%;
}
</style>
</head>
<body>
<div...
I have no idea why this doesn't work in MSIE. Is it because I'm trying to populate and submit the form from a text link?
<head>
...
<script type="text/javascript" language="javascript">
/**
* submit the GET request through the filter form
**/
function filterById(emailId)...
I'm a perl newbie, so i have a question.
given the following code, how can I get the value of the second regex?
foreach my $line(@file) {
chomp($line);
$line =~ /\$#(\@)(\w+)#\$/g;
print "$2\n";
$line =~ /\$#(\?)(\w+)#$/g;
print "$2\n";
}
It's possible that...
Hi.
I want to override one of the constructors in ArrayList, namely the
public ArrayList(Collection c) {
}
constructor, but I want to perform some operations on the Collection before calling super. Is there anyway that I can do this?
What I'm trying to accomplish is an ArrayList of files...
hi all,
I've got a very very slight grasp of the javax.xml.* and org.w3c.dom.* libraries, and from some tutorials and books I've been able to parse simple xml documents.
But I need to parse a complex xml document, and I have no idea how to go about it. The document looks like this:
<?xml...
Keyword search is down right now, so hopefully I'm not asking something often asked.
When I issue a 'SHOW status FROM database LIKE 'table_name' does the update_time only show when the table had records deleted/inserted?
I mean - does it detected when an UPDATE table SET... query is issued? If...
How come I can't execute the following query through an ADODB.Connection, but I have no problem when I cut and paste it into a query?
This is the error I get:
One or more values are prohibited by the validation rule 'Like "???###"' set for 'engagement.Client ID'. Enter a value that...
Hey all -
I was wondering if there was a way I could run the values through a function, and have those results display in the column.
I just need to remove the last 27 characters in the column, and unfortunately I cannot just delete the extra data.
As you can tell, I'm *extremely* new with...
Hi -
Is there a way to detect that changes to a table have been made? I saw in Google Groups that changes to a table can be detected by analysing the definition, but I couldn't find any accompanying code.
Any help/strategies on this would be appreciated.
TIA
How can I access a Sub inside Form1 from Module1?
Is this even possible?
What I want to do is have a 'progress bar' embedded into the form... I'm going to use labels to simulate the progress bar, but all the heavy duty processing happens in the module. I'd like to be able to update the labels...
I'm trying to post data using the wininet.dll, and the data isn't posting.
I'm sending the request, and recieving the response, but the data isn't posting correctly. Here's the code I have...
(W32 Constants and Function Aliases snipped for brevity)
Private Const HttpPost_Header =...
Using IE6/Windows or IE/Mac (forget what version), I can't highlight any of the following text on this page:
http://www.elliottsweb.com/prev/nadler/secondary.html?sec_attorney.html
CSS file at:
http://www.elliottsweb.com/prev/nadler/includes/ie.css
I *know* it's got something to do with the...
Ok - I've got a bit of a question:
Is there a general rule as to when one should use a JSP page or servlet? I mean - if JSP pages eventually end up as compiled code anyways, then why even go the route of using a servlet?
The only real difference I see between the two is that you can explicitly...
How come, given these two URLS:
1) http://localhost:8100/servlet/cctservlets.PMT?st=1&len=20&print=true&wh=+WHERE+System_Project_Manager+LIKE+%27%25lopez%25%27+
2) http://localhost:8100/servlet/cctservlets.PMT?st=1&len=20&print=true&wh=+WHERE+PMT_Number+%3D+222314+
The second one works...
hello:
Is there a way that I can instantiate another class in the same package, without changing the classpath?
Both the files are in the same directory which allows them to both be in the same package.
I'm using JRun 3.0, and JDK 1.3.
TIA leo
------------
Leo Mendoza...
How come this snippet of code throws a SQL Exception stating that "No data was found!":
(r is aResultSet, sb is a StringBuffer)
if(r.next()) { //advance to first record
//iterate through the records, looking for matches
//sb.append(r.getInt("StartHour") + ":"...
Is there a way to just get the proxy address from the System (say, MSIE's proxy settings), and use that in my application?
My HttpURLConnection keeps timing out, and I'm thinking it's because of the proxy.
TIA leo
------------
Leo Mendoza
lmendoza-at-garbersoft-dot-net
I'm running JRun 3.0, on Win2K and I'm having a problem getting this servlet to run. I know I've put the servlet in the right directory, since I was able to successfully run a simple "Hello World" servlet.
I'm assuming there's something wrong with my servlet specific code, since the...
How can I get tomcat to recognize when a servlet's been recompiled? I know I can restart it, but I really don't want to go that route. (apache 1.3.20 + tomcat 4 on Linux - mandrake 8.0)
server.xml:
<Context path="/leo" docBase="webapps/leo"
crossContext="false"...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.