walkerdigest
Programmer
I want to code a website with two language (one of them is english) how can I manage that? thanks
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<%
set fso=Server.CreateObject("Scripting.FileSystemObject")
pfad=Server.MapPath(language) & "\" & "index.htm"
Set f = fso.GetFile(pfad)
set ts=f.OpenAsTextStream
Inhalt=ts.ReadAll
response.write Inhalt
%>