Forum: ASP.NET Jan 5th, 2008 |
| Replies: 9 Views: 12,454 My simplest script that works:
Page source:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="test.aspx.cs" Inherits="test" %>
<html>
<head>
<script type="text/javascript">... |
Forum: JavaScript / DHTML / AJAX Jan 5th, 2008 |
| Replies: 9 Views: 1,508 No problem. Glad to help!
~ mellamokb |
Forum: ASP.NET Jan 5th, 2008 |
| Replies: 9 Views: 12,454 My mistake. Please change this code:
i.UniqueID
to the following:
i.ClientID
Then it should work. Please post back if you have any more problems. |
Forum: ASP Jan 5th, 2008 |
| Replies: 16 Views: 3,795 Groups of radio boxes are allowed to have the same name because they are mutually exclusive. However, the checkboxes each have independent state (i.e., checking one does not uncheck another), so... |
Forum: ColdFusion Jan 5th, 2008 |
| Replies: 4 Views: 1,712 No problem. Glad to help!
~ mellamokb |
Forum: JavaScript / DHTML / AJAX Jan 5th, 2008 |
| Replies: 9 Views: 1,508 Applying the same technique should yield the same results. Is there other JavaScript on the page? Does this other JavaScript that is running possibly have an error? If there are any errors, the... |
Forum: JavaScript / DHTML / AJAX Jan 5th, 2008 |
| Replies: 4 Views: 1,989 Here is full page source that works. I fixed a bug in the javascript I wrote, where I used a single equals where I should have used double equals for comparison:
<html>
<head>
... |
Forum: JavaScript / DHTML / AJAX Jan 4th, 2008 |
| Replies: 4 Views: 1,989 Here is a javascript function that will enable or disable all input text fields:
function setInputTextEnabled(isEnabled)
{
inputArray = document.getElementsByTagName("input");
... |
Forum: ASP Jan 4th, 2008 |
| Replies: 1 Views: 1,384 Loops through all of the QueryString variables and sets a cookie for each one.
For Each strKey in Request.QueryString
Response.Cookies(strKey) = Request.QueryString(strKey)
Next
~... |
Forum: JavaScript / DHTML / AJAX Jan 4th, 2008 |
| Replies: 4 Views: 1,711 That kind of issue should have nothing to do with a JavaScript component that moves a div up and down on the screen. Do you suppose there's a hardware problem or a OS bug or a FireFox bug... |
Forum: MS Access and FileMaker Pro Jan 4th, 2008 |
| Replies: 5 Views: 2,542 You can import the data into Microsoft Access from Excel. Here is a page that talks about that:
http://office.microsoft.com/en-us/excel/HP052008521033.aspx
Or you can use ODBC or OleDb... |
Forum: ASP.NET Jan 4th, 2008 |
| Replies: 9 Views: 12,454 The onMouseOver attribute is not part of the server-side tag, so it doesn't support DataBinding (<%# Eval("Picture") %>). However, you can use the GridView's RowDataBound event to access each... |
Forum: ColdFusion Jan 4th, 2008 |
| Replies: 4 Views: 1,712 More information can be found at:
http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentation&file=00000242.htm
~ mellamokb |
Forum: ColdFusion Jan 4th, 2008 |
| Replies: 4 Views: 1,712 There are two different types of errors that can occur in a webpage: parsing / compile-time errors and run-time errors. If you misspell an attribute in the query, then the cf engine can already... |
Forum: PHP Jan 4th, 2008 |
| Replies: 8 Views: 2,265 How are you viewing the pages? If your address bar says something like "C:\abc\123\webroot\myPage.php" then the server code is not going to run.
Also, if the page includes php code, then the... |
Forum: JavaScript / DHTML / AJAX Jan 4th, 2008 |
| Replies: 4 Views: 1,711 I cannot reproduce this on my FireFox browser. Could you supply a screenshot from your computer and perhaps versioning information for FireFox?
~ mellamokb |
Forum: Graphics and Multimedia Jan 4th, 2008 |
| Replies: 11 Views: 5,422 Do you have a website where you can publish the file? If not, check into some common hosts, like www.godaddy.com, www.networksolutions.com, etc., or google "hosting".
~ mellamokb |
Forum: ASP.NET Jan 4th, 2008 |
| Replies: 9 Views: 12,454 Hi Cano82,
You need to add some javascript in the "onMouseOver" event of the hyperlink that changes the image. Here is an example of a link and image, where mousing over the link changes the... |
Forum: MS Access and FileMaker Pro Jan 4th, 2008 |
| Replies: 5 Views: 2,542 Hi Alekhan,
Please visit the following forum thread at vbforums:
http://www.vbforums.com/showthread.php?p=2223896
There is a discussion on connecting remotely to Microsoft Access using a... |
Forum: MS SQL Jan 4th, 2008 |
| Replies: 6 Views: 1,119 |
Forum: MS SQL Jan 4th, 2008 |
| Replies: 6 Views: 1,119 Actually, the query was a little confusing, because those t1's at the end of the inner subqueries are actually irrelevant. The t1 comes from the name of the subquery at the very end. Here is the... |
Forum: IT Professionals' Lounge Jan 4th, 2008 |
| Replies: 4 Views: 772 Gotcha. Thanks for the site link.
When I say "div," I'm referring to the actual HTML that makes up the so-called "Layers," because I didn't know if you were familiar with HTML or what program you... |
Forum: JavaScript / DHTML / AJAX Jan 4th, 2008 |
| Replies: 6 Views: 1,075 No problem. Glad to help!
~ mellamokb |
Forum: JSP Jan 3rd, 2008 |
| Replies: 6 Views: 7,636 Hi,
The problem with a servlet filter (as a Url rewriter) is that you are not changing what Url the user sees, but you are changing how the Url is processed. If you want to change what the user... |
Forum: JavaScript / DHTML / AJAX Jan 3rd, 2008 |
| Replies: 6 Views: 1,075 Hi OmniX,
Your code has a few problems. First, you are retrieving the Id, not the name ("document.getElementById"), so the controls will not be found properly. Second, since they all have the... |
Forum: ASP Jan 3rd, 2008 |
| Replies: 1 Views: 1,037 Hi janicefernandes,
Admin code is not really anything "special," perse. Your admin site is probably going to be pretty specialized, at best. What you can search for is how to make the admin site... |
Forum: JSP Jan 3rd, 2008 |
| Replies: 1 Views: 1,158 Relaying issues are the most common problem when trying to send E-mail with a website. You need to make sure the SmtpClient settings are appropriate. From your code sample, you are trying to make... |
Forum: JSP Jan 3rd, 2008 |
| Replies: 1 Views: 967 Retrieved from http://www.thescripts.com/forum/thread183033.html:
COM.ibm.db2.jdbc.DB2ConnectionPoolDataSource ds = new
COM.ibm.db2.jdbc.DB2ConnectionPoolDataSource();
ds.setDatabaseName(...);... |
Forum: JSP Jan 3rd, 2008 |
| Replies: 3 Views: 1,997 Spaces are not acceptible Url characters. Use the Url equivalent, %20, whenever you need a space in the information transferred to get the best results. Or better yet, use a built-in Url Encoding... |
Forum: MS SQL Jan 3rd, 2008 |
| Replies: 1 Views: 772 I am going to guess this means you want the last 7 orders by category, in which case there would need to be some sort of date field, say Order.orderDate, to identify what "last" means:
(untested)... |
Forum: JSP Jan 3rd, 2008 |
| Replies: 6 Views: 7,636 You cannot totally hide the URL, because the browser must have some URL to be viewing. However, you can use a servlet filter that alters the contents of the URL so the user sees something different... |
Forum: Database Design Jan 3rd, 2008 |
| Replies: 1 Views: 1,122 According to Wikipedia:
"A data file is a computer file which stores data for use by a computer application or system."
"A flat file is a computer file that can only be read or written... |
Forum: IT Professionals' Lounge Jan 3rd, 2008 |
| Replies: 4 Views: 772 Please explain in more detail:
You are creating an HTML web-page using div's. Correct?
How does it "get onto the server"? When you copy and paste the page from your workstation to the... |
Forum: MS SQL Jan 3rd, 2008 |
| Replies: 6 Views: 1,119 Hi Daniel,
Here is the best I could come up with. I think it does what you wanted, but it's made up of a lot of subqueries, so it wouldn't be very efficient. Some improvements might include... |
Forum: ASP.NET Jan 3rd, 2008 |
| Replies: 1 Views: 1,833 Hi,
Regarding MsgBox: MsgBox displays a message on the screen; however, the code is on the server, so the message box would show on the server, which is ignored by it so that the it wouldn't be... |