[jQuery] JQuery Tabs : iso-8859-1 to utf-8

[jQuery] JQuery Tabs : iso-8859-1 to utf-8


Hi,
I'm trying to use jquery tabs, but to do so i have to use
charset=utf-8 instead of iso-8859-1.
The problem is that special characters coming from sql server are not
correctly translated to utf-8.
Anyone had the same problem ?
Spec:Windows xp, iis6, asp
Here's a few lines of code.
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<%
Option Explicit
Response.Expiresabsolute = Now() - 1
Response.AddHeader "pragma","no-cache"
Response.AddHeader "cache-control","private"
Response.CacheControl = "no-cache"
Response.AddHeader "Content-Type","text/html; charset=utf-8"
<----------- HERE I HAVE TO CHANGE TO utf-8
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
...
<script language="javascript" src="inc/jquery-1.2.6.pack.js"
type="text/javascript" > </script>
<link rel="stylesheet" href="inc/ui.tabs.css" type="text/css"
media="print, projection, screen">
<script src="inc/ui.core.js" type="text/javascript"></script>
<script src="inc/ui.tabs.js" type="text/javascript"></script>
...
$('#container-tabs > ul').tabs({
        fx: { opacity: 'toggle', duration: 'fast' },
        select: function(ui) {
        },
        show: function(ui) {
            //if(ui.panel.id=="frag-cal1")
            //    $("div.filterbox").corner("br bl 10px").corner("#dog tl 16px");
            /*
            var tmp;
            for(tmp in ui.panel)
            if(ui.panel[tmp]!=null) alert(tmp + ":" + ui.panel[tmp])
            */
        }
    });
});