当前位置: 编程技术>.net/c#/asp.net
本页文章导读:
▪在子页中隐藏模板页中的div示例代码
需求如下: 1.模板页右边包含了一个登陆div,想让没登陆的时候这个div显示,登陆后该div隐藏 2.显示一个欢迎用户的div,主要是想通过javascript来隐藏 注意:模板页里是不能使用RegisterClientScriptBlock.........
▪ASP.NET中相对路径的使用总结
如果有一个网站上的图片的路径是这样的: http://localhost:2008/websit1/images/1.jpg websit1表示的是虚拟路径或者是站点 在asp.net中,如果我们在.cs页面中输入 Response.Write(Request.MapPath("/01.jpg")); 这可.........
▪.net SMTP发送Email邮件且可带附件示例
代码如下: public static void sendEmail(string toAddress, string emailbody) { var fromAddress = ConfigurationManager.AppSettings["EmailAddress"]; string fromPassword = ConfigurationManager.AppSettings["EmailPassword"].ToString(); const string sub.........
[1]在子页中隐藏模板页中的div示例代码
来源: 互联网 发布时间: 2013-11-30
需求如下:
1.模板页右边包含了一个登陆div,想让没登陆的时候这个div显示,登陆后该div隐藏
2.显示一个欢迎用户的div,主要是想通过javascript来隐藏
注意:模板页里是不能使用RegisterClientScriptBlock注册和执行javascrip的,
所以javascript的注册和执行放在page页中来实现了
Main.master模板页里的内容
<!--登录小div-->
<div >
<div >
会员登录
</div>
<table >
<tr>
<td >用户名:</td>
<td><input type="text" id="txtUserName" /></td>
</tr>
<tr>
<td >密码:</td>
<td><input type="password" id="txtPass" /></td>
</tr>
<tr>
<td colspan="2">
<input src="/images/az-login-gold-3d.gif" type="image" id="btnLogin" />
<input src="/images/az-newuser-gold-3d.gif" type="image" id="btnReg" />
</td>
</tr>
</table>
</div>
<div >
<span id="spanUserInfo">
尊敬的<%=serverUserName %>,欢迎你光临!
</span>
</div>
<1>.在后台Main.master中的代码
protected string serverUserName;
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
Model.Users user = Session["currUser"] as Model.Users;
if (user != null)
{
serverUserName = user.Name;
}
}
}
<2>MainPage主页面中后台代码,它是继承于模板页Main.master的
public partial class MainPage : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
Model.Users user = Session["currUser"] as Model.Users;
if (user != null)
{
common.CommonCode.ExecuteScriptFunc(this,true);
}
else
{
common.CommonCode.ExecuteScriptFunc(this,false);
}
}
}
}
<3>ExecuteScriptFunc封装代码
public static void ExecuteScriptFunc(System.Web.UI.Page page, bool bShowUserInfo)
{
string func = "function showUser(isLogin){\r\n\r\nif (isLogin) {\r\n" +
"$(\".loginDiv\").hide();\r\n" +
"$(\".loginOkDiv\").show();\r\n" +
"}\r\n" +
"else {\r\n" +
"$(\".loginDiv\").show();\r\n" +
"$(\".loginOkDiv\").hide();\r\n" +
"}}";
string func1 = "";
if (bShowUserInfo)
{
func1 = func + "\r\n" +
"$(function(){\r\nshowUser(true)" +
"});";
}
else
{
func1 = func + "\r\n" +
"$(function(){\r\nshowUser(false)" +
"});";
}
page.ClientScript.RegisterStartupScript(page.GetType(), Guid.NewGuid().ToString(),
func1, true);
//page.ClientScript.RegisterStartupScript(page.GetType(), Guid.NewGuid().ToString(),
// func1);
}
1.模板页右边包含了一个登陆div,想让没登陆的时候这个div显示,登陆后该div隐藏
2.显示一个欢迎用户的div,主要是想通过javascript来隐藏
注意:模板页里是不能使用RegisterClientScriptBlock注册和执行javascrip的,
所以javascript的注册和执行放在page页中来实现了
Main.master模板页里的内容
代码如下:
<!--登录小div-->
<div >
<div >
会员登录
</div>
<table >
<tr>
<td >用户名:</td>
<td><input type="text" id="txtUserName" /></td>
</tr>
<tr>
<td >密码:</td>
<td><input type="password" id="txtPass" /></td>
</tr>
<tr>
<td colspan="2">
<input src="/images/az-login-gold-3d.gif" type="image" id="btnLogin" />
<input src="/images/az-newuser-gold-3d.gif" type="image" id="btnReg" />
</td>
</tr>
</table>
</div>
<div >
<span id="spanUserInfo">
尊敬的<%=serverUserName %>,欢迎你光临!
</span>
</div>
<1>.在后台Main.master中的代码
代码如下:
protected string serverUserName;
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
Model.Users user = Session["currUser"] as Model.Users;
if (user != null)
{
serverUserName = user.Name;
}
}
}
<2>MainPage主页面中后台代码,它是继承于模板页Main.master的
代码如下:
public partial class MainPage : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
Model.Users user = Session["currUser"] as Model.Users;
if (user != null)
{
common.CommonCode.ExecuteScriptFunc(this,true);
}
else
{
common.CommonCode.ExecuteScriptFunc(this,false);
}
}
}
}
<3>ExecuteScriptFunc封装代码
代码如下:
public static void ExecuteScriptFunc(System.Web.UI.Page page, bool bShowUserInfo)
{
string func = "function showUser(isLogin){\r\n\r\nif (isLogin) {\r\n" +
"$(\".loginDiv\").hide();\r\n" +
"$(\".loginOkDiv\").show();\r\n" +
"}\r\n" +
"else {\r\n" +
"$(\".loginDiv\").show();\r\n" +
"$(\".loginOkDiv\").hide();\r\n" +
"}}";
string func1 = "";
if (bShowUserInfo)
{
func1 = func + "\r\n" +
"$(function(){\r\nshowUser(true)" +
"});";
}
else
{
func1 = func + "\r\n" +
"$(function(){\r\nshowUser(false)" +
"});";
}
page.ClientScript.RegisterStartupScript(page.GetType(), Guid.NewGuid().ToString(),
func1, true);
//page.ClientScript.RegisterStartupScript(page.GetType(), Guid.NewGuid().ToString(),
// func1);
}
[2]ASP.NET中相对路径的使用总结
来源: 互联网 发布时间: 2013-11-30
如果有一个网站上的图片的路径是这样的: http://localhost:2008/websit1/images/1.jpg
websit1表示的是虚拟路径或者是站点
在asp.net中,如果我们在.cs页面中输入 Response.Write(Request.MapPath("/01.jpg"));
这可以输出图片的物理路径 也就是这张图片在服务器上存放的具体路径
HTML中的相对路径
<img src="/01.jpg"> ../ 表示切换到上一级目录 http://localhost:2008/01.jpg
<img src="/blog_article/01.jpg"> ./或者 不填 表示当前路径 http://localhost:2008/websit1/01.jpg
<img src="/01.jpg"> / 表示根目录 返回的是网站的根目录 http://localhost:2008/01.jpg
而 ~/ 只能在asp.net中使用 而且是只能在服务器控件中使用
如果是站点或者是虚拟目录的话 表示的是根目录
Response.Write(Request.MaopPath("~/01.jpg")) 获得的是Response.Write(Request.MapPath("/01.jpg")); 相同的物理路径
websit1表示的是虚拟路径或者是站点
在asp.net中,如果我们在.cs页面中输入 Response.Write(Request.MapPath("/01.jpg"));
这可以输出图片的物理路径 也就是这张图片在服务器上存放的具体路径
HTML中的相对路径
代码如下:
<img src="/01.jpg"> ../ 表示切换到上一级目录 http://localhost:2008/01.jpg
<img src="/blog_article/01.jpg"> ./或者 不填 表示当前路径 http://localhost:2008/websit1/01.jpg
<img src="/01.jpg"> / 表示根目录 返回的是网站的根目录 http://localhost:2008/01.jpg
而 ~/ 只能在asp.net中使用 而且是只能在服务器控件中使用
如果是站点或者是虚拟目录的话 表示的是根目录
代码如下:
Response.Write(Request.MaopPath("~/01.jpg")) 获得的是Response.Write(Request.MapPath("/01.jpg")); 相同的物理路径
[3].net SMTP发送Email邮件且可带附件示例
来源: 互联网 发布时间: 2013-11-30
代码如下:
public static void sendEmail(string toAddress, string emailbody)
{
var fromAddress = ConfigurationManager.AppSettings["EmailAddress"];
string fromPassword = ConfigurationManager.AppSettings["EmailPassword"].ToString();
const string subject = "Job Recommendation";
var smtp = new SmtpClient
{
Host = ConfigurationManager.AppSettings["SmtpServer"].ToString(),
Port = int.Parse(ConfigurationManager.AppSettings["SmtpPort"]),
EnableSsl = true,
DeliveryMethod = SmtpDeliveryMethod.Network,
UseDefaultCredentials = false,
Credentials = new NetworkCredential(fromAddress, fromPassword)
};
using (var message = new MailMessage(fromAddress, toAddress, subject, HttpUtility.HtmlEncode(emailbody)))
{
smtp.Send(message);
}
}
<add key="EmailAddress" value="**********@gmail.com"/>//Email Address
<add key="EmailPassword" value="*********"/> //Emial PWD
<add key="SmtpServer" value="smtp.gmail.com"/>
<add key="SmtpPort" value="587"/>
<--带附件版本->
var fromAddress = "allenyinj@gmail.com";
string fromPassword = "yj1989120";
const string subject = "CV";
var smtp = new SmtpClient
{
Host = "smtp.gmail.com",
Port = 587,
EnableSsl = true,
DeliveryMethod = SmtpDeliveryMethod.Network,
UseDefaultCredentials = false,
Credentials = new NetworkCredential(fromAddress, fromPassword)
};
MailMessage email=new MailMessage(fromAddress, "allen.yin.jun@gmail.com");
email.Subject = "INLINE attachment TEST";
email.IsBodyHtml = true;
string attachmentPath = "C:\\3.jpeg";
Attachment inline = new Attachment(attachmentPath);
inline.ContentDisposition.Inline = true;
inline.ContentDisposition.DispositionType = DispositionTypeNames.Inline;
//inline.ContentId = "1";
//inline.ContentType.MediaType = "image/png";
inline.ContentType.Name = Path.GetFileName(attachmentPath);
email.Attachments.Add(inline);
email.Body = "test";
smtp.Send(email);
email.Dispose();
//如果没有路径,用Stream
Attachment letter = new Attachment(FileUploadLetter.FileContent, FileUploadLetter.PostedFile.ContentType);
letter.ContentDisposition.Inline = true;
letter.ContentDisposition.DispositionType = DispositionTypeNames.Inline;
//inline.ContentId = "1";
letter.ContentType.MediaType = FileUploadLetter.PostedFile.ContentType;
letter.ContentType.Name = Path.GetFileName(FileUploadLetter.PostedFile.FileName);
letter.Name = Path.GetFileName(FileUploadLetter.PostedFile.FileName);
//如果希望通过匿名邮件发送 则
var smtp = new SmtpClient
{
Host = "serverName",
Port = 25, //匿名发送端口
EnableSsl = false,
DeliveryMethod = SmtpDeliveryMethod.Network,
UseDefaultCredentials = false,
//Credentials = new NetworkCredential(fromAddress, fromPassword)
};
最新技术文章: