码迷,mamicode.com
首页 > Web开发 > 详细

ASP.NET知识点

时间:2014-05-10 20:40:39      阅读:450      评论:0      收藏:0      [点我收藏+]

标签:style   tar   ext   color   c   width   

1、在页面中输出数据(后台代码弹出提示框)

       (1)、Response.Write("<script>alert(‘上传成功!‘);</script>");  或者  Response.Write("<script>alert(‘"+str_message+"‘);</script>"); 

       (2)、RegisterStartupScript("true","<script>alert(‘上传成功!‘)</script>");

 2、页面跳转并传递参数  (在页面重定向URL时传递参数,使用”?“分隔页面的链接地址和参数,多个参数时,参数与参数间用”&“分隔)

         (1)Response.Redirect("~/welcome.aspx“);

         (2)Response.Redirect("~/welcome.aspx?parameter=one“);

         (3)Response.Redirect("~/welcome.aspx?Name="+name+"&Sex="+sex);

                在welcome.aspx页面的后台代码中获取参数 ,三种方法:

                   string name=Request["Name"];

                   string name = Request.Params["Name"];

                   string name = Request.QueryString["Name"];

3、Response.Write("<hr>"); 横线      Response.Write("<br>");换行

 

ASP.NET知识点,布布扣,bubuko.com

ASP.NET知识点

标签:style   tar   ext   color   c   width   

原文地址:http://www.cnblogs.com/zhangyonglvdaomei/p/3720736.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!