asp.net 2.0 中怎么实现像搜狐首页中的搜索,点击搜索后弹出新的窗口,同时显示搜索结果

asp.net 2.0 中如何实现像搜狐首页中的搜索,点击搜索后弹出新的窗口,同时显示搜索结果。
问题如题,敬请各位前辈不吝赐教。

------解决方案--------------------
站内搜索,可以参考一下lucence.net,分词组件可以用KTDictSeg
这两个都是开源的

弹出窗体,用window.open 或者用<a href="" target="_blank">都行
------解决方案--------------------
<form id="form1" name="form1" method="post" action="" target="_blank">
</form>
这样就可以 哦