Click here to Skip to main content
15,884,923 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: Losing a session variable Pin
Guffa22-Mar-07 2:36
Guffa22-Mar-07 2:36 
AnswerRe: Losing a session variable Pin
Guffa22-Mar-07 1:18
Guffa22-Mar-07 1:18 
GeneralRe: Losing a session variable Pin
Abbas8222-Mar-07 5:18
Abbas8222-Mar-07 5:18 
QuestionWill VB COM will do better than normal ASP ? Pin
Rajkamal_dfine21-Mar-07 4:35
Rajkamal_dfine21-Mar-07 4:35 
AnswerRe: Will VB COM will do better than normal ASP ? Pin
Shog921-Mar-07 8:53
sitebuilderShog921-Mar-07 8:53 
AnswerRe: Will VB COM will do better than normal ASP ? Pin
JoiSteingrims21-Mar-07 13:35
JoiSteingrims21-Mar-07 13:35 
AnswerRe: Will VB COM will do better than normal ASP ? Pin
Guffa22-Mar-07 2:09
Guffa22-Mar-07 2:09 
AnswerRe: Will VB COM will do better than normal ASP ? Pin
andyharman22-Mar-07 2:05
professionalandyharman22-Mar-07 2:05 
The ADO ResultSet object has a GetString method that can render the entire resultset as a single string:
strData = objRS.GetString( , , "#<#/td#>##<#td#>#", _
"#<#/td#>##<#/tr#>##<#tr#>##<#td nowrap#>#", "#&#nbsp;")
strData = Replace(Replace(Replace(strData, "#&#", Chr(1)), "&", "&amp;"), Chr(1), "&")
strData = Replace(Replace(Replace(strData, "#<#", Chr(1)), "<", "&lt;"), Chr(1), "<")
strData = Replace(Replace(Replace(strData, "#>#", Chr(1)), ">", "&gt;"), Chr(1), ">")
strData = "<td>" & Replace(Left(strData, Len(strData) - 15), "</tr>", "</tr>" & vbCRLF)
Call Response.Write(strData)

Most of the code is used to add table tags around each of the cells. We use similar code to produce quite large MS-Excel reports.

Regards
Andy
Question[Architecture] Building a plugin system in a Web Application Pin
Giovanny Temgoua21-Mar-07 4:03
Giovanny Temgoua21-Mar-07 4:03 
AnswerRe: [Architecture] Building a plugin system in a Web Application Pin
Bradml22-Mar-07 13:11
Bradml22-Mar-07 13:11 
GeneralRe: [Architecture] Building a plugin system in a Web Application Pin
Giovanny Temgoua23-Mar-07 8:10
Giovanny Temgoua23-Mar-07 8:10 
QuestionRe: [Architecture] Building a plugin system in a Web Application Pin
Giovanny Temgoua24-Mar-07 23:17
Giovanny Temgoua24-Mar-07 23:17 
QuestionHow can I do paging in Datagrid through JavaScript? Pin
Deepak Kashyap20-Mar-07 20:31
Deepak Kashyap20-Mar-07 20:31 
AnswerRe: How can I do paging in Datagrid through JavaScript? Pin
Vasudevan Deepak Kumar22-Mar-07 6:14
Vasudevan Deepak Kumar22-Mar-07 6:14 
QuestionJavascript Password Generator Pin
fryguy.ca20-Mar-07 17:16
fryguy.ca20-Mar-07 17:16 
AnswerRe: Javascript Password Generator Pin
Bradml20-Mar-07 22:50
Bradml20-Mar-07 22:50 
GeneralRe: Javascript Password Generator Pin
fryguy.ca21-Mar-07 10:40
fryguy.ca21-Mar-07 10:40 
GeneralRe: Javascript Password Generator Pin
Bradml22-Mar-07 13:13
Bradml22-Mar-07 13:13 
QuestionIIS ASP Encrypt Utility Pin
Vasudevan Deepak Kumar20-Mar-07 12:55
Vasudevan Deepak Kumar20-Mar-07 12:55 
QuestionC++ dll accessed by COld Fusion Pin
LCI20-Mar-07 8:08
LCI20-Mar-07 8:08 
QuestiongSoap dime attachments Pin
abac_mefisto20-Mar-07 5:23
abac_mefisto20-Mar-07 5:23 
QuestionJavascript, innerHTML and Firefox Pin
JoiSteingrims20-Mar-07 5:14
JoiSteingrims20-Mar-07 5:14 
AnswerRe: Javascript, innerHTML and Firefox Pin
Guffa20-Mar-07 10:07
Guffa20-Mar-07 10:07 
AnswerRe: Javascript, innerHTML and Firefox Pin
JoiSteingrims21-Mar-07 13:19
JoiSteingrims21-Mar-07 13:19 
QuestionStarting Application Pin
Navneet Hegde20-Mar-07 3:03
Navneet Hegde20-Mar-07 3:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.