Multiple ResponseData for a script (General questions)
It is possible to have the ResponseData sent multiple lines of html code? I'm trying to populate a selectable listbox on a webpage from an INI file. I can get the data to loop through the file, only the last record found in file is being published to the webpage. Here's the code I'm working with:
[code]
Dim Li, LiUser As Integer
LiUser = TotalSections(App.Path & userINI)
If ScriptData = ListUser Then
For Li = 1 To LiUser
ResponseData = <option> + ReadIniValue(App.Path & userINI, user & Li, name ) + </option>
Next Li
End If[/code]