- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 3
- Posts with Upvotes
- 3
- Upvoting Members
- 3
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
21 Posted Topics
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 in their address bar than what page is served to them. But why are …
Do you have a website where you can publish the file? If not, check into some common hosts, like [url]www.godaddy.com[/url], [url]www.networksolutions.com[/url], etc., or google "hosting". ~ mellamokb
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 method, like URLEncoder.encode(), to encode the entire Url before it is processed and take care of all …
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 they should all have unique names. Then they will be passed appropriately instead of appended as an array. The …
[quote] Now the problem I have is that I have the neccessary code (or what i think is) to stop from the input button working (as I have used the same technique on the other input submit buttons). [/quote] Applying the same technique should yield the same results. Is there …
[quote]The result I am getting on the browser is 'My name is Dorc' and the 'Hello World' is not being executed. I get the same result using ASP.[/quote] 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 …
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 source of the image, and mousing out of the link changes the image back to …
[quote]Im looking for a piece of code that can be used to select all input text fields and then disable and enable them at will.[/quote] Here is a javascript function that will enable or disable all input text fields: [code] function setInputTextEnabled(isEnabled) { inputArray = document.getElementsByTagName("input"); for (var index = …
[quote]Instead, I get the default error that shows the SQL in my query, which I don't want. Cftry/cfcatch didn't work, either.[/quote] 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 …
Loops through all of the QueryString variables and sets a cookie for each one. [code] For Each strKey in Request.QueryString Response.Cookies(strKey) = Request.QueryString(strKey) Next [/code] ~ mellamokb
Hi Alekhan, Please visit the following forum thread at vbforums: [url]http://www.vbforums.com/showthread.php?p=2223896[/url] There is a discussion on connecting remotely to Microsoft Access using a pertinent connection string, along with some example code in VBA. Perhaps you can adapt the idea to your application: [code] Option Explicit Dim adoConn As ADODB.Connection Dim …
[quote]I have Spry placed on my web pages, when previewing in Firefox, and I click the Spry Accordion my nav at the top becomes bold and fuzzy, very strange, but it doesn't happen on every page[/quote] I cannot reproduce this on my FireFox browser. Could you supply a screenshot from …
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 using temporary tables or views, or using indices: [code] select ID_NUM, (select ATTRIBUTE_CODE …
Please explain in more detail: [QUOTE]When I design a page with Layers it looks fine,[/QUOTE] You are creating an HTML web-page using div's. Correct? [QUOTE]however, once it gets onto the server[/QUOTE] How does it "get onto the server"? When you copy and paste the page from your workstation to the …
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 same name, the code won't know which one to modify. A better approach is to pass a reference …
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 protected so people who aren't supposed to access it can't. One method of achieving this is …
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 use of gmail's mail server, in which case you need to use the appopriate server name, …
Retrieved from [url]http://www.thescripts.com/forum/thread183033.html:[/url] [code] COM.ibm.db2.jdbc.DB2ConnectionPoolDataSource ds = new COM.ibm.db2.jdbc.DB2ConnectionPoolDataSource(); ds.setDatabaseName(...); ds.setUser(...); ds.setPassword(...); javax.sql.PooledConnection c = null; c = ds.getPooledConnection(...) [/code] ~ mellamokb
[quote]The tables are joined. I want to display last 7 data with grouping their category[/quote] 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: …
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 sequentially. It consists of one or more records. Each record contains one or more field …
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 locked down until a user sat down in front of the server and …
The End.
mellamokb