|
|
|
|
||||||
| alt.internet.seo Internet search engines and related topics. |
![]() |
|
|
LinkBack | Outils de la discussion |
|
|
#1 |
|
Messages: n/a
Hébergeur: |
I'm pulling data from an Access database and need
put a space between two words. At the moment I have this, <%=(rs1.Fields.Item("strFirstName").Value)%> <%=(rs1.Fields.Item("strSecondName").Value)%> This produces, FirstNameSecondName without the space. <%=(rs1.Fields.Item("strFirstName").Value)%> <%=(rs1.Fields.Item("strSecondName").Value)%> Displays OK on the page, but isn't search engine friendly. How can I add the space but still have it optimised? (Working in ASP) TIA. -- T.J. http://www.uksmallbusinessdirectory.co.uk |
|
|
|
#2 |
|
Messages: n/a
Hébergeur: |
"T.J." <no1@home.invalid> wrote:
> I'm pulling data from an Access database and need > put a space between two words. > At the moment I have this, > > <%=(rs1.Fields.Item("strFirstName").Value)%> > <%=(rs1.Fields.Item("strSecondName").Value)%> > > This produces, > > FirstNameSecondName without the space. > > <%=(rs1.Fields.Item("strFirstName").Value)%> <%=(rs1.Fields.Item(" > strSecondName").Value)%> > > Displays OK on the page, but isn't search engine friendly. Why not? nbsp; is white space afaik. > How can I add the space but still have it optimised? <%=...%> <%=....%> ? However, use a database for what it is good at: manipulating data. I am sure there is a contact function in Access to glue strFirstName + space + strSecondName. Probably is more efficient as well. -- John Need with SEO? Get started with a SEO report of your site: --> http://johnbokma.com/websitedesign/seo-expert-.html |
|
|
|
#3 |
|
Messages: n/a
Hébergeur: |
> I'm pulling data from an Access database and need > put a space between two words. > At the moment I have this, > > <%=(rs1.Fields.Item("strFirstName").Value)%> > <%=(rs1.Fields.Item("strSecondName").Value)%> > > This produces, > > FirstNameSecondName without the space. > > <%=(rs1.Fields.Item("strFirstName").Value)%> <%=(rs1.Fields.Item("strSecondName").Value)%> > > Displays OK on the page, but isn't search engine friendly. > > How can I add the space but still have it optimised? > (Working in ASP) <%=(rs1.Fields.Item("strFirstName").Value) & " " & (rs1.Fields.Item("strSecondName").Value)%> |
|
|
|
#4 |
|
Messages: n/a
Hébergeur: |
> <%=(rs1.Fields.Item("strFirstName").Value) & " " & > (rs1.Fields.Item("strSecondName").Value)%> should all be on one line . . . . . . |
|
|
|
#5 |
|
Messages: n/a
Hébergeur: |
"Buzby" <gb@pumpupthe.net> wrote in message news:4n7ambF93f7eU1@individual.net... > >> I'm pulling data from an Access database and need >> put a space between two words. >> At the moment I have this, >> >> <%=(rs1.Fields.Item("strFirstName").Value)%> >> <%=(rs1.Fields.Item("strSecondName").Value)%> >> >> This produces, >> >> FirstNameSecondName without the space. >> >> <%=(rs1.Fields.Item("strFirstName").Value)%> <%=(rs1.Fields.Item("strSecondName").Value)%> >> >> Displays OK on the page, but isn't search engine friendly. >> >> How can I add the space but still have it optimised? >> (Working in ASP) > > <%=(rs1.Fields.Item("strFirstName").Value) & " " & > (rs1.Fields.Item("strSecondName").Value)%> > > Thank you, did just what I wanted it to do. -- T.J. http://www.uksmallbusinessdirectory.co.uk |
|
![]() |
| Outils de la discussion | |
|
|