Click here to Skip to main content
15,920,513 members
Home / Discussions / Web Development
   

Web Development

 
GeneralProblem with get__Form(&pIUKN) Pin
Rick Benish24-Aug-00 9:58
Rick Benish24-Aug-00 9:58 
General#include directive Pin
Member 17013522-Aug-00 21:51
Member 17013522-Aug-00 21:51 
GeneralRe: #include directive Pin
Rick Benish24-Aug-00 10:15
Rick Benish24-Aug-00 10:15 
GeneralRe: #include directive Pin
Ahmad Billah31-Aug-00 1:25
Ahmad Billah31-Aug-00 1:25 
GeneralASP Compiler Pin
Member 322319-Aug-00 20:04
Member 322319-Aug-00 20:04 
GeneralRe: ASP Compiler Pin
jns22-Aug-00 2:53
jns22-Aug-00 2:53 
GeneralRe: ASP Compiler Pin
sarose22-Aug-00 3:40
sarose22-Aug-00 3:40 
GeneralJScript: Scripting.Dictonary: problems with the empty string Pin
Carl in 't Veld31-Jul-00 1:26
Carl in 't Veld31-Jul-00 1:26 
I don't understand how in ASP empty strings are handled. I check if if a field in a resultset has indeed a value. If not, I'll add "" to the dictionary. Afterwards, I want to use the items in the dictonary but there's not "" in some fields, but the Object-type null! So I have to test on it and set the string to "" myself Frown | :(


// oRs is a ADODB.ResultSet
// d is a Scripting.Dictionary
    e = new Enumerator(oRs.Fields);

    for (;!e.atEnd();e.moveNext()) {
      i= e.item();

      if (typeof(i.value) != "unknown")
        d.add(i.name, i.value);
      else d.add(i.name, "");
    }

    arr = (new VBArray(d.Keys())).toArray
    for (i in arr) {
      q1= d(arr[i]);

      if (q1 == null) q1= "";
      q= Server.HTMLEncode(q1);
    }

Can anyone help me?
GeneralRe: JScript: Scripting.Dictonary: problems with the empty string Pin
Uwe Keim19-Aug-00 11:18
sitebuilderUwe Keim19-Aug-00 11:18 
QuestionJScript ADODB.COMMAND: can someone provide some examples? Pin
Carl in 't Veld31-Jul-00 1:08
Carl in 't Veld31-Jul-00 1:08 
AnswerRe: JScript ADODB.COMMAND: can someone provide some examples? Pin
Rick Benish24-Aug-00 10:22
Rick Benish24-Aug-00 10:22 
General<SCRIPT LANGUAGE=VBScript RUNAT=Server><html>'gfgf'</script> <%=rstMessage("content")%> Pin
xxx@yahoo.com17-Jul-00 18:19
xxx@yahoo.com17-Jul-00 18:19 
Generaluser authentication problem Pin
drkar17-Jul-00 15:38
drkar17-Jul-00 15:38 
GeneralRe: user authentication problem Pin
Tom Wellige26-Jul-00 20:27
Tom Wellige26-Jul-00 20:27 
GeneralDownloading File through ASP. Pin
Daniel Fiske17-Jul-00 1:01
Daniel Fiske17-Jul-00 1:01 
GeneralRe: Downloading File through ASP. Pin
Arup24-Jul-00 5:57
Arup24-Jul-00 5:57 
GeneralRe: Downloading File through ASP. Pin
Arup24-Jul-00 5:59
Arup24-Jul-00 5:59 
Generalxml/xsl question Pin
Nick Hodapp3-Jul-00 9:44
sitebuilderNick Hodapp3-Jul-00 9:44 
GeneralRe: xml/xsl question Pin
Arup24-Jul-00 6:09
Arup24-Jul-00 6:09 
GeneralDownloading ActiveX ctrl if ctrl is not there in my PC. Urgent Pl. reply Pin
Krishna Kunnor3-Jul-00 5:18
sussKrishna Kunnor3-Jul-00 5:18 
GeneralRe: Downloading ActiveX ctrl if ctrl is not there in my PC. Urgent Pl. reply Pin
Uwe Keim3-Jul-00 13:30
sitebuilderUwe Keim3-Jul-00 13:30 
GeneralRe: Downloading ActiveX ctrl if ctrl is not there in my PC. Urgent Pl. reply Pin
Alex Gorev4-Jul-00 5:38
Alex Gorev4-Jul-00 5:38 
GeneralHTML LAYER PROBLEM IN NETSCAPE Pin
jed lone'29-Jun-00 7:10
sussjed lone'29-Jun-00 7:10 
GeneralRe: HTML LAYER PROBLEM IN NETSCAPE Pin
mikey11-Jul-00 16:54
mikey11-Jul-00 16:54 
GeneralForcing browser to scroll with Response.Redirect Pin
Konstantin Vasserman24-Jun-00 9:15
Konstantin Vasserman24-Jun-00 9:15 

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.