I have a problem with characters above 127 when editing a page with word.
When I redirect to a page called test.aspx which looks like this:
<%@ Page Language="
vb" AutoEventWireup="false" Codebehind="test.aspx.
vb" Inherits="WebApplication2.test"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>test</title>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
<meta name=vs_defaultClientScript content="JavaScript">
<meta name=vs_targetSchema content="http://schemas.microsoft.com/intellisense/ie5">
<meta name="ProgId" content="Word.Document">
</head>
<body MS_POSITIONING="GridLayout">
<form id="Form1" method="post" runat="server">
</form>
æøå
</body>
</html>
From another page page I redirect to the test.aspx.
When I do like this:
response.redirect("test.aspx")
the "Edit with word" function works fine.
When I do like this:
response.redirect("test.aspx?a=1")
the browser looks fine with 'æøå', but when I press Edit With WOrd the characters are interpreted different by word.
The funny thing is that, when I save as a HTM file from word. Open the file with Notepad and save it. Open it againin word the 'æøå' is written correctly.
How come.
Best regards
Peter Kofod