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

网页制作的一些有用函数

时间:2014-12-16 18:53:18      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:blog   http   ar   io   os   sp   on   art   log   

repeater可以点击内部内容进行跳转并传输值

<ItemTemplate>
<tr>
<td> <a href="readArticle1.aspx(要跳转的地址)?ID=<%#Eval("userID")%>&articleTitle=<%#Eval("articleTitle") %>"><%#Eval("userID")%></td>
<td> <a href="readArticle1.aspx(要跳转的地址)?ID=<%#Eval("userID")%>&articleTitle=<%#Eval("articleTitle") %>"><%#Eval("articleTitle")%></a></td>
</tr>
</ItemTemplate>

 

添加音乐

 <embed src="/佟大为 - 放飞.mp3"(音乐的地址信息)width="1" height="1" type="audio/mpeg" loop="true"(是否循环) autostart="true"(是否自动播放) id="MP3" />

 

页面跳转并传值

if((string)SqlHelper.SqlExecuteScalar("SELECT userID,userPassword FROM users WHERE userID = N‘"+userID.Text +"‘ AND userPassword = ‘"+userPassword.Text +"‘")!=null)
{
string querystr = userID.Text;
Response.Write("<script>alert(‘登录成功‘)</script>");
Response.Redirect("http://localhost:20890/personal.aspx?a=" + querystr + "");
}
else
{
Response.Write("<script>alert(‘登录失败‘)</script>");
}

 

接受传值

userID.Text = Request.QueryString["ID"];
articleTitle.Text = Request.QueryString["articleTitle"];

 

绑定图片(未实现)

<asp:Image ID="Image1" runat="server" Height="212px" Width="179px" src="~\result"/>

 

SqlConnection conn = new SqlConnection(str);
userID.Text = Request.QueryString["a"];
bloglist.DataSource = SqlHelper.SelectDT("Select * From author WHERE userID=N‘" + userID.Text + "‘");
bloglist.DataBind();
conn.Open();
userID.Text = "王恺鹏";
string srcc = "SELECT userPicture FROM users WHERE userID =N‘" + userID.Text + "‘";
SqlCommand cmd = new SqlCommand(srcc, conn);
string result = cmd.ExecuteScalar().ToString();

网页制作的一些有用函数

标签:blog   http   ar   io   os   sp   on   art   log   

原文地址:http://www.cnblogs.com/wangkaipeng/p/4167679.html

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