PDA

View Full Version : ASP & HTML


Victor
10-19-1999, 10:38 AM
Hi!<BR>I'm playing with simple ASP commands for creating table, and switching couple times between ASP and HTML using<BR><% and %>:<BR><BR>ASP code<BR>HTML CODE<BR>ASP CODE<BR>HTML<BR>....<BR><BR>Does this way has any performance issues?<BR>Should I use strictly response.write maybe? Like<BR>response.write("<table border=' 1' >") and put all HTNL tags in response.write?<BR><BR>Thank you, <BR>Victor

Mark Vick
10-22-1999, 11:15 AM
Well, yes, it does degrade performance to switch often, but Respone.Write isn't a barn-burner either. I have seen a white paper from Microsoft that even says to write a script to strip out comments from your final production code.<BR><BR>Not sure it is much to worry about, unless you are getting really really busy - then there are really a host of things you could look at for performance increases!