Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
3
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
2 Commented Posts
0 Endorsements
Ranked #2K

21 Posted Topics

Member Avatar for Raghu D

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 …

Member Avatar for ~s.o.s~
0
2K
Member Avatar for Zay

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

Member Avatar for Member #114696
0
237
Member Avatar for shweta797

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 …

Member Avatar for ~s.o.s~
0
104
Member Avatar for syedferhat

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 …

Member Avatar for Shailesh25
0
132
Member Avatar for OmniX

[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 …

Member Avatar for OmniX
0
108
Member Avatar for dorcas

[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 …

Member Avatar for ezb
0
113
Member Avatar for Cano82

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 …

Member Avatar for Cano82
0
1K
Member Avatar for OmniX

[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 = …

Member Avatar for OmniX
0
8K
Member Avatar for lafalot

[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 …

Member Avatar for mellamokb
0
142
Member Avatar for mrt.work

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

Member Avatar for mellamokb
0
132
Member Avatar for Alekhan

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 …

Member Avatar for Alekhan
0
173
Member Avatar for jp61

[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 …

Member Avatar for jp61
0
163
Member Avatar for Member #25180

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 …

Member Avatar for mellamokb
0
95
Member Avatar for maurellis

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 …

Member Avatar for maurellis
0
108
Member Avatar for OmniX

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 …

Member Avatar for mellamokb
0
132
Member Avatar for janicefernandes

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 …

Member Avatar for mellamokb
0
228
Member Avatar for stoncoder

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, …

Member Avatar for mellamokb
0
111
Member Avatar for gauravmishra

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

Member Avatar for mellamokb
0
69
Member Avatar for Cano82

[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: …

Member Avatar for mellamokb
0
66
Member Avatar for wegdan

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 …

Member Avatar for mellamokb
0
82
Member Avatar for knowledgelover

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 …

Member Avatar for mellamokb
0
155

The End.