If you're in favor of following X-HTML standards and the standards that are
most likely to be adopted as time moves on, you should use " instead of '
for your tag attributes. In today's world, it really doesn't matter for
functionality's sake, but " is or will be the accepted strict standard, most
likely.
Ray at work
"Jack" <Ja**@discussions.microsoft.com> wrote in message
news:E1**********************************@microsof t.com...
Hello Tom,
I was wondering what is the concept behind both the staetment being
correct.
Thanks. Regards
"Tom Kaminski [MVP]" wrote:
"Jack" <Ja**@discussions.microsoft.com> wrote in message
news:74**********************************@microsof t.com... > Hi,
> I have the following piece of code:If RS.EOF or RS.BOF Then
> Session("Authenticated") = False
>
> Response.Write "Sorry, your userid or password did not match"
> Response.Write "<BR>"
> Response.Write " or you have not registerd yet, please register"
> Response.Write <a href="default.asp">Clik here
> Response.EndResponse.Write <a href="default.asp">Clik here
> Here, I need to build the line (Response.Write <a
href="default.asp">Clik > here)
> dynamically, so that the html output from asp page
> gives us <a href="default.asp">Clik here
> Thanks for any help or advise in advance
Response.Write "<a href='default.asp'>Clik here
or
Response.Write "<a href=""default.asp"">Clik here