473,320 Members | 2,071 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

Double quotes

Hi
I have an asp page.I have all the form tags, javascripts etc in that.
For e.g In my asp page I have mentioned my form tag as
<form name=frmupdateskill method=post>

and javascript as

<script language=javascript>
some code...
</script>
I send this asp page to my onsite person. When he replaces the old asp page with the one I sent the following are the things I come across.

The form tag now reads as

<form name="frmupdateskill" method="post">

and the javascript reads as

<script language="javascript">
some code...
</script>

The change I see is it replaces the form names and the javascript with double quotes
the form name reads"frmupdateskill" instead of frmupdateskill
javascript as "javascript" instead of javascript.

Can you please let me know how automatically does this happen altogether.

I checked with the onsite person and he tells me that he just replaces the file thats it its not at all a Human error.

Please let me know on this...

There are many such asp pages which I sent get converted into quotes..

Thanks
Prashant

-----------------------------
This message is posted by http://Asp.ForumsZone.com

Jul 19 '05 #1
4 3283
Files don't change themselves. If you're seeing this in a view-source, some
browsers, such as Mozilla, show you their own interpretation of the source,
so maybe it's something like that that's going on.

Ray at home

<po*******@yahoo.com> wrote in message
news:29*************@Asp.ForumsZone.com...
Hi
I have an asp page.I have all the form tags, javascripts etc in that.
For e.g In my asp page I have mentioned my form tag as
<form name=frmupdateskill method=post>

and javascript as

<script language=javascript>
some code...
</script>
I send this asp page to my onsite person. When he replaces the old asp page with the one I sent the following are the things I come across.
The form tag now reads as

<form name="frmupdateskill" method="post">

and the javascript reads as

<script language="javascript">
some code...
</script>

The change I see is it replaces the form names and the javascript with double quotes the form name reads"frmupdateskill" instead of frmupdateskill
javascript as "javascript" instead of javascript.

Can you please let me know how automatically does this happen altogether.

I checked with the onsite person and he tells me that he just replaces the file thats it its not at all a Human error.
Please let me know on this...

There are many such asp pages which I sent get converted into quotes..

Thanks
Prashant

-----------------------------
This message is posted by http://Asp.ForumsZone.com

Jul 19 '05 #2
I would guess it's your editor. I know if I switch to WYSIWYG mode in
Interdev, then go back to HTML view, all of my tables get properties put in
that I didn't put in.

<po*******@yahoo.com> wrote in message
news:29*************@Asp.ForumsZone.com...
Hi
I have an asp page.I have all the form tags, javascripts etc in that.
For e.g In my asp page I have mentioned my form tag as
<form name=frmupdateskill method=post>

and javascript as

<script language=javascript>
some code...
</script>
I send this asp page to my onsite person. When he replaces the old asp page with the one I sent the following are the things I come across.
The form tag now reads as

<form name="frmupdateskill" method="post">

and the javascript reads as

<script language="javascript">
some code...
</script>

The change I see is it replaces the form names and the javascript with double quotes the form name reads"frmupdateskill" instead of frmupdateskill
javascript as "javascript" instead of javascript.

Can you please let me know how automatically does this happen altogether.

I checked with the onsite person and he tells me that he just replaces the file thats it its not at all a Human error.
Please let me know on this...

There are many such asp pages which I sent get converted into quotes..

Thanks
Prashant

-----------------------------
This message is posted by http://Asp.ForumsZone.com

Jul 19 '05 #3
Hi,

I think having double quotes like this is a good practise anyway, anyone disagree for a reason?

Some time before, I forgot to use double quotes for <INPUT ......value=keyboard and mouse> and and mouse got truncated when displayed on the form.

Regards,
Conax

<po*******@yahoo.com> wrote in message news:29*************@Asp.ForumsZone.com...
Hi
I have an asp page.I have all the form tags, javascripts etc in that.
For e.g In my asp page I have mentioned my form tag as
<form name=frmupdateskill method=post>

and javascript as

<script language=javascript>
some code...
</script>


I send this asp page to my onsite person. When he replaces the old asp page with the one I sent the following are the things I come across.

The form tag now reads as

<form name="frmupdateskill" method="post">

and the javascript reads as

<script language="javascript">
some code...
</script>

The change I see is it replaces the form names and the javascript with double quotes
the form name reads"frmupdateskill" instead of frmupdateskill
javascript as "javascript" instead of javascript.

Can you please let me know how automatically does this happen altogether.

I checked with the onsite person and he tells me that he just replaces the file thats it its not at all a Human error.

Please let me know on this...

There are many such asp pages which I sent get converted into quotes..

Thanks
Prashant

-----------------------------
This message is posted by http://Asp.ForumsZone.com


Jul 19 '05 #4
Quotes are required if there is a space in the value, because the space is
seen as a delimiter, otherwise it is not unless you want to validate your
HTML with W3C or similar.

Also, please only use plain text in newsgroups.

--
Roland

This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose.
"Conax" <Co******@hotmail.com> wrote in message
news:e3**************@TK2MSFTNGP11.phx.gbl...
Hi,

I think having double quotes like this is a good practise anyway, anyone
disagree for a reason?

Some time before, I forgot to use double quotes for <INPUT
......value=keyboard and mouse> and and mouse got truncated when displayed on
the form.

Regards,
Conax

<po*******@yahoo.com> wrote in message
news:29*************@Asp.ForumsZone.com...
Hi
I have an asp page.I have all the form tags, javascripts etc in that.
For e.g In my asp page I have mentioned my form tag as
<form name=frmupdateskill method=post>

and javascript as

<script language=javascript>
some code...
</script>
I send this asp page to my onsite person. When he replaces the old asp page with the one I sent the following are the things I come across.
The form tag now reads as

<form name="frmupdateskill" method="post">

and the javascript reads as

<script language="javascript">
some code...
</script>

The change I see is it replaces the form names and the javascript with double quotes the form name reads"frmupdateskill" instead of frmupdateskill
javascript as "javascript" instead of javascript.

Can you please let me know how automatically does this happen altogether.

I checked with the onsite person and he tells me that he just replaces the file thats it its not at all a Human error.
Please let me know on this...

There are many such asp pages which I sent get converted into quotes..

Thanks
Prashant

-----------------------------
This message is posted by http://Asp.ForumsZone.com

Jul 19 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: sinister | last post by:
The examples in the online manual all seem to use double quotes, e.g. at http://us3.php.net/preg_replace Why? (The behavior is different with single quotes, and presumably simpler to...
11
by: Jakanapes | last post by:
Hi all, I'm looking for a way to scan a block of text and replace all the double quotes (") with single quotes ('). I'm using PHP to pull text out of a mySQL table and then feed the text into...
5
by: Joel | last post by:
Hi, I incorporated a function in my code that whenever I use a string variable in an sql statement if the string contains a single quote it will encase it in double quotes else single quotes. ...
24
by: deko | last post by:
I'm trying to log error messages and sometimes (no telling when or where) the message contains a string with double quotes. Is there a way get the query to insert the string with the double...
4
by: (PeteCresswell) | last post by:
Is his just a flat-out "No-No" or is there some workaround when it comes time for SQL searches and DAO.FindFirsts against fields containing same? I can see maybe wrapping the value searched for...
8
by: Ahmad A. Rahman | last post by:
Hi all, I have a problem constructing a regular expression using .net. I have a string, separated with comma, and I want to group the string together but, I failed to group a numeric character...
7
by: gar | last post by:
Hi, I need to replace all the double quotes (") in a textbox with single quotes ('). I used this code text= Replace(text, """", "'" This works fine (for normal double quotes).The problem...
16
by: Charles Law | last post by:
I have a string similar to the following: " MyString 40 "Hello world" all " It contains white space that may be spaces or tabs, or a combination, and I want to produce an array...
1
by: desi.american | last post by:
I have a dynamically generates ASPX page with tables and data. Depending on user selection, the same page can be viewed as a simple web page (rendered in HTML) or as an excel spreadsheet. If the...
4
by: Justin Fancy | last post by:
Hi everyone, I need to replace all instances of a double quote(") with two single quotes('') in a text file. I already have some replacements of strings going on, but I tried this one, but the...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
0
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.