Import CSV File Doesnt Work

Server Model: ASP.NET
Steps:

Output:

Your path expression does not seem correct: upload[0].path
How is your upload input defined in the server action? Also on the page? Also what have you selected in the upload step?

You need to select the actual upload input in the upload step, not just $_POST

I understand that this is not an array. I disable file upload. again the same error. I think that normally modulename must be “importmodule” but i see that “ımportmodule”. Turkish character (i,ı)

Do you have some localization on the server, what language is the OS?

OS language is Turkish.

You could try to edit the aspx file and add culture="en-US" to the page directive.

I added culture=“en-US” to web.config solved my problem. Sample:

</system.webServer>
<system.web>
<globalization fileEncoding="“utf-8"” culture=“en-US”/>
</system.web>