网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 大学论文导航 设计下载 最新论文 下载排行 原创论文 论文源代码
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > ASP.net > 正文

14个关于ASP.NET热点问题的解答

来源:http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/10/12
tem.Web.UI.HtmlTextWriter 类型的参数。控件要发送到客户端的 HTML 作为字符串参数传递到 HtmlTextWriter 的 Write 方法。
     例如:
    服务器控件代码(简单显示字符串):


Simple.vb:

    Imports System
    Imports System.Web
    Imports System.Web.UI
   
    Namespace SimpleControlSamples
   
    Public Class SimpleVB : Inherits Control
   
    Protected Overrides Sub Render(Output As HtmlTextWriter)
    Output.Write("<H2>欢迎使用控件开发!</H2>")
    End Sub
    End Class
    End Namespace
    引用文件Simple.aspx:
    <%@ Register TagPrefix="SimpleControlSamples" Namespace="SimpleControlSamples" Assembly="SimpleControlSamplesVB" %>
   
    <html>
    <body>
    <form method="POST" action="Simple.aspx" runat=server>
    <SimpleControlSamples:SimpleVB id="MyControl" runat=server/>
    </form>
    </body>
    </html> 

    
     13、如何在ASP.NET程序中发送邮件呢?
   
     在ASP.NET程序中发送邮件不再象ASP中那样需要组件的支持了,在.NET的框架基类的System.Web.Mail名称空间内包含的MailMessage和SmtpMail类可以实现这个功能。
     例如:
     Dim message As new Mail.MailMessage
     message.From = "web3@163.com"
     message.To = "web3@163.com"
     message.Subject = "测试"
     message.Body = "内容"
     Mail.SmtpMail.SmtpServer = "localhost"
     Mail.SmtpMail.Send(message)
   
     14、我将如何通过ADO.NET读取数据库中的图片并显示它呢?
   
     下面举一个从Microsoft SQL Server的PUB数据库读取图片并显示它的例子: 
    <%@ Import Namespace="System.Data.SqlClient" %>
    <%@ Import Namespace="System.Drawing" %>
    <%@ Import Namespace="System.Drawing.Imaging" %>
    <%@ Import Namespace="System.IO" %>
    <script language="VB" runat="server">
    Sub Page_load(Sender as Object, E as EventArgs)
    dim stream as new MemoryStream
    dim connection as SqlConnection
    connection=new SqlConnection("server=localhost;database=pubs;uid=sa;pwd=")
    try
    connection.Open()
    dim command as SqlCommand
    command = new SqlCommand ("select logo from pub_info where pub_id=''0736''", connection)
    dim image as byte()
    image = command.ExecuteScalar ()
    stream.Write (image, 0, image.Length)
    dim imgbitmap as bitmap
    imgbitmap = new Bitmap (stream)
    Response.ContentType = "image/gif"
    imgbitmap.Save (Response.OutputStream, ImageFormat.Gif)
    Finally
    connection.Close()
    stream.Clse()
    End Try
    End Sub
    </script> 

网学推荐

免费论文

原创论文

设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号