Thank you for the forum,
I am a VFP programmer and have a secure file trans. website.
I have a aspx.vb file that needs a simple change to allow the new excel extention through:
Ex:
Case ".CSV", ".XLS"
' If fc(0).ContentType = "application/vnd.ms-excel" Then
' ' OK
' Else
' GetFiles(strSavePath)
' ctlMsg1.InnerText = strNow & "Invalid file type."
' Return
' End If
Case ".DOC"
' If fc(0).ContentType = "application/msword" Then
' ' OK
' Else
The new code needs to look like this:
Case ".CSV", ".XLS", ".XLSX"
' If fc(0).ContentType = "application/vnd.ms-excel" Then
' ' OK
' Else
' GetFiles(strSavePath)
' ctlMsg1.InnerText = strNow & "Invalid file type."
' Return
' End If
Case ".DOC"
' If fc(0).ContentType = "application/msword" Then
' ' OK
' Else
I have recompiled useing my bat file in test. I have a new .dll file to add to my bin folder. My question is can I retain the same .dll file name and drag and drop into my bin folder or is there more to consider.
Thank you
Mike