Removal Of Spacing
Im trying to extract data from a website, however after removing all of what i no longer need, it is somehow, littered with tab'd spaces, like the length of | | sometimes appears as a small box on notepad.
i've tried removing it using replace, but it doesn't like what im doing. Anyone have advice on how to remove said spacing?
View Replies
I'm trying to remove a node by name. I can access the node by using the selectSingleNode method, but I'm not quite sure how to remove it from there. The only remove method I can see is: removeChild. So assuming I select the node I want, i would have to call ParentNode. But once i have the parent node, I know longer know the exact child that i wanted to delete.
So is there is a deletebyName or something similar that I'm missing? or can i get the position of the node i've selected in the node list? If i know where the child is located in the node list I can then call the parent and use the removechild method from there.
View Replies
View Related
I'm trying to create an email removal page, where recipients can go and get their emails off of our list.
View Replies
View Related
i use this set of codes,
arrModels = split(request("model"),",")
arrSerials = split(request("serialno"),",")
arrQty = split(request("qty"),",")
not sure why when i do this sql
for i = 0 to uBound(arrModels)
sql = "INSERT INTO TableInventory (SerialNumber, Qty, ModelId, Hostname, IPAddress, LocationId) VALUES ("
sql = sql & "'" & arrSerials(i) & "', " & arrQty(i) & ", " & arrModels(i) & ", '" & request("txtHostname") & "', '" & request("txtIPAddress") & "', " & request("Five") & ")"
response.write sql & "<br />"
next
response.end
i get the second serialnumber with a extra spacing infront.
can advise me? Code:
View Replies
View Related
Any way to do this from asp page in IIS4? Application.Contents.Remove is IIS 5+. Setting variable to empty string does not remove variable.
View Replies
View Related
I have just got a datafeed and i'm trying to put it in an actinic website for a customer. I match every record eccept price feed Actinic says imported fields must not contain any decimal points i.e £1000.00 should be 100000 how do i do this in excel ? I can't see anyway of formatting it to match the requirements.
View Replies
View Related
I am working with an .asp page that creates an email using CDONTS. I need to be able to capture a text screenshot out of a mainframe session and send it in the email. When the email is sent, I am losing the spaces that align the screenshot. Ex.
THIS IS A PRIVATE COMPUTER NETWORK ---
UNAUTHORIZED USE WILL RESULT IN PROSECUTION
Returns> THIS IS A PRIVATE COMPUTER NETWORK --- UNAUTHORIZED USE WILL RESULT IN PROSECUTION .
View Replies
View Related
Am not sure about entering data into MS SQL Server 7.
Now, if I were to enter lines of text, with line spacing between each sentence, when I pull the data back out from the d/b into my ASP page, would the line spacing turn out, or would all the text be clumped together? Code:
View Replies
View Related
I'm inserting data into my SQL server database via an ASP/HTML form. I have a textarea in the form where the user can enter content and I want to maintain any new paragraphs entered - however, when i insert the content into the database and reproduce it on another page, the spacing is lost and all the content is displayed in one paragraph. Is there a simple way to get round this issue?
The column on the database is set up as Type - Text (size 16).
View Replies
View Related
I have a prebuild freeware script that is installed and working fine. I am not a programmer by any means, but can usually hack through it and figure out how to make the changes needed. I just can't seem to get this one figured out.
The output is double line spacing and only a single column. Can someone help me to make the changes required to have it just one breakrow (no line spacing), and if possible, to have 2 or three columns? Code:
View Replies
View Related