ASP.net 中怎么用参数设置控件属性?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ASP.net 中怎么用参数设置控件属性?相关的知识,希望对你有一定的参考价值。

比如说我有一个DetailView控件,我定义了一个参数Mode, 根据一定的前提条件来决定Mode是"Edit"还是 “Insert”, 比如说,用户点击了“编辑” 或者 “插入”。然后转到新的页面并把 Mode这个参数传给DefaultMode以初始化这个页面。 那我下面这段代码应该补完呢?
<asp:DetailsView ID="DetailsView1" runat="server" DefaultMode=我想参数化这个属性>
省略代码...
</asp:DetailsView>
我用DefaultMode="<%#Mode%>" 之类的怎么搞也不行。。。
希望高手回答,谢谢!!
有不是在cs代码中设置(page_load中设置之类的)的方法吗?直接在标签中变量化那个属性不行吗?

控件是不能这样绑定的,默认行为可以在pageload里面用代码控制,另外,你如果想判断处理的类型,可以在点击按钮后,将动作保存在session或者viewstate里面。 参考技术A 服务器控件不能自己乱加属性的,你可以使用隐藏域,session,cookie,viewstate(这个,其实是隐藏域的变种) 参考技术B 把此参数保存到一个hiddenfield里,后台取次hidden的值判断也可实现吧 参考技术C 在cs代码中设置。

asp.net怎么用上传控件,上传图片!

这里的File是控件的ID
string FileName = File.FileName;//获取上传文件的名称
string Str = FileName.Split(\'.\')[1];//获取上传文件的后缀
string NewName = DateTime.Now.ToString("yyyyMMddhhmmss")+"."+Str;//重命名上传文件
string FilePath = Server.MapPath("~/Image/");//设置上传文件的保存路径
if (!Directory.Exists(FilePath))//判断路径是否存在

Directory.CreateDirectory(FilePath);//如果不存在创建文件夹

File.SaveAs(FilePath + NewName);//上传文件
参考技术A string m_sUpFilePath = Server.MapPath("../" + "UpFiles/UpFile/");
string m_sFileName = DateTime.Now.ToString("yyyyMMddHHmmss") + DateTime.Now.Millisecond.ToString();
HttpFileCollection m_hfcPro = Request.Files;
HttpPostedFile myFile = m_hfcPro[0];
string savename = m_sFileName + Path.GetExtension(this.downUrl.FileName).ToLower();
m_sFileName = m_sUpFilePath + @"\" + m_sFileName;
if (downUrl.FileName.HasFile )

if (this.downUrl.HasFile && (Path.GetExtension(this.downUrl.FileName).ToLower() != ".jpg" || Path.GetExtension(this.downUrl.FileName) != ".gif" || Path.GetExtension(this.downUrl.FileName) != ".png") && Common.Left(this.downUrl.PostedFile.ContentType, 5).ToLower() == "image")

SqlConnection m_conAdd = Common.CreateConn();
m_conAdd.Open();
SqlCommand m_comAdd = new SqlCommand("Insert Into weblink(SiteName,LinkUrl,LinkLogo,OrderID,IsCheck,IsMain,Notes)Values(@sitename,@linkurl,@linklogo,@orderid,@ischeck,@ismain,@notes)", m_conAdd);
m_comAdd.Parameters.Add("@sitename", SqlDbType.VarChar, 200).Value = this.siteName.Text;
m_comAdd.Parameters.Add("@linkurl", SqlDbType.VarChar, 100).Value = this.siteLink.Text;
m_comAdd.Parameters.Add("@linklogo", SqlDbType.VarChar, 100).Value = savename;
m_comAdd.Parameters.Add("@orderid", SqlDbType.Int).Value = (this.siteOrder.Text.Trim() != "" ? Convert.ToInt32(this.siteOrder.Text) : 21);
m_comAdd.Parameters.Add("@ischeck", SqlDbType.Int).Value = 0;
m_comAdd.Parameters.Add("@ismain", SqlDbType.Int).Value = 0;
m_comAdd.Parameters.Add("@notes", SqlDbType.VarChar, 1000).Value = Common.CutString(this.siteNotes.Text, 1000);
m_comAdd.ExecuteNonQuery();
m_comAdd.Dispose();
m_conAdd.Close();
m_conAdd.Dispose();
this.downUrl.SaveAs(m_sUpFilePath + savename);

else

Common.Alert("上传文件格式不正确");


参考技术B 上传
前台代码:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Upload.aspx.cs" Inherits="Mypractice.Upload" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>

</div>
<asp:FileUpload ID="FileUpload1" runat="server" />
<asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="上传" />
</form>
</body>
</html>


后台:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Collections;
using System.Web.Security;

using System.Windows.Forms;

namespace Mypractice

public partial class Upload : System.Web.UI.Page

protected void Page_Load(object sender, EventArgs e)



private void UpFile()

string FilePath = Server.MapPath("./") + "Newupload";
//Newupload文件夹是根目录下的文件夹
HttpFileCollection HFC = Request.Files;
for (int i = 0; i < HFC.Count; i++)

HttpPostedFile hf = HFC[i];

if (HFC[i].ContentLength > 0)

hf.SaveAs(FilePath + "//" + System.IO.Path.GetFileName(hf.FileName));
Response.Write("<script>alert('上传成功!')</script>");
MessageBox.Show(hf.FileName);


if(hf.FileName=="")


MessageBox.Show("aa");





protected void Button1_Click(object sender, EventArgs e)

UpFile();


参考技术C http://user.qzone.qq.com/156490391/blog/1315445184
我空间里有这篇文章,你可以读一下,希望对你有用。

以上是关于ASP.net 中怎么用参数设置控件属性?的主要内容,如果未能解决你的问题,请参考以下文章

用ASP.NET做网站时,为啥设置了showMessageBox属性为True却不会弹出窗口?

Asp.net 如何取母版页的属性及控件及方法调用求解答

asp.net做个简单的表格

asp.net(C#)怎样将listview中的radiobutton设置成互斥?

asp.net:子控件的Visible属性啥时候自动设置?

如何把asp.net 中文本框控件的text属性设置为int型?