下一站天后

今朝的容颜老于昨晚

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
//得到指定ddl的选项值
        function getDdlSelectValue(ddlobj)
        {
            
try
            {
                
return ddlobj.options[ddlobj.selectedIndex].value            
            }
            
catch(e)
            {
                
return "";
            }
        }
        function getDdlSelectText(ddlobj)
        {
            
try
            {
                
return ddlobj.options[ddlobj.selectedIndex].text            
            }
            
catch(e)
            {
                
return "";
            }
        }
        
        function goTo()
        {
            var dll 
= document.getElementById("DDlTitle");
            var selectText 
= getDdlSelectText(dll);
            var select 
= getDdlSelectValue(dll);            
            var url 
= "/Manager/Article/PageContent.aspx?ShowType="+select+"&Type=P&Kind="+selectText+"&url="+escape(window.location.href);//得到当前页面的url
            window.location.href = url;

        }

js:window.location.href放在=左边得到当前页面地址,放在右边则为转向。

c#:string url = Request.RawUrl.ToLower();//得到当前页面的url

Response.Redirect("PageContent.aspx?ShowType="+this.DDlTitle.SelectedValue+"&Type=N&Kind="+DDlTitle.SelectedItem.Text+"&url="+url+"&Id="+DDlClassId.SelectedValue);


posted on 2008-09-26 17:02  孙雅玲  阅读(572)  评论(1编辑  收藏  举报