Wow at all the -1. Erm, well... it may not be valid, but the meta
-in-noscript
hack (as everyone's already posted and been voted down for) really is the only way to do what you want. But:
I need to redirect the users to a Notification Page, if the user's browser don't support javascript
I think what you want isn't what you need. No-JS redirection is horrible for usability/accessibility. Please don't do that.
Consider an approach like SO's instead: keep the user on the same page, but just include an on-page notification that scripting is unavailable:
<noscript>
<div id="noscript-warning">Stack Overflow works best with JavaScript enabled</div>
</noscript>
You can use CSS to make this big and red and appear on top of the whole of the rest of the page if you have to.
You can be more specific too. Often you need not only JavaScript, but support for certain scripting features that aren't available everywhere. For example IEMobile (pre-8) does have JavaScript, but has stunted DOM support which stops you running most modern scripts. Or you might be relying on HTML5-related interfaces that aren't everywhere yet. In that case you can sniff client-side and set the notification's visibility manually:
<head>
<style type="text/javascript">
#scriptwarning {
position: absolute; z-index: 9;
top: 25%; left: 25%; width:50%; height: 50%;
color: red; background: white;
border: dashed red 1px;
}
body.jsok #scriptwarning { display: none; }
</style>
</head><body>
<script type="text/javascript">
// Sniff capabilities in whatever way is necessary
//
if ('featureWeWantToUse' in window) {
document.body.className= 'jsok';
}
</script>
<div id="scriptwarning">
JavaScript is disabled, or too rubbish on your browser to do what we want.
See the <a href="browsersupport.html">supported browsers</a> page for more information.
</div>
</body>