Pure ASP upload with utf-8 filenames

前端 未结 1 1737
暖寄归人
暖寄归人 2021-01-21 14:03

I\'m have made a upload page in classic asp and it works fine, as long as the filenames are not in utf-8 characters. I have added charset til the page and the form accepts utf-8

相关标签:
1条回答
  • 2021-01-21 14:25

    Try adding

    If Form.State = 0 Then 'Completted
      'Add this line to set the character set based on the response.
      Form.CharSet = Response.CharSet
    

    For more information see Upload - use unicode (utf-8) character set for request/response data .

    0 讨论(0)
提交回复
热议问题