Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,027

HOME > ASP.NET > ASP.NET FormView Control > ASP.NET FormView Control - Add/Insert



Clound SSD Virtual Server

ASP.NET FormView Control - Add/Insert

ASP.NET FormView Control - Add/Insert อีกความสามารถหนึ่งของ FormView ที่ทำงานบน Framework 2.0 ก็คือการแสดงโหมดของการเพิ่มข้อมูล (Add-Insert) หลักการก็ไม่ยากครับ เพียงทำการเปลี่ยนโหมดของ DetailView ให้แสดง Mode ที่เป็น Insert และจัดการใส่ Control Textbox เข้าไปในโหมดนี้

Language Code : VB.NET || C#

Framework : 2,3,4


FormViewAddInsert.aspx

<%@ Import Namespace="System.Data"%>
<%@ Import Namespace="System.Data.OleDb"%>
<%@ Page Language="VB" %>
<script runat="server">
	Dim objConn As OleDbConnection
	Dim objCmd As OleDbCommand
	Dim strSQL As String
	Dim strGalleryName As String = ""

    Sub Page_Load(sender As Object, e As EventArgs)
		Dim strConnString As String
		strConnString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="&Server.MapPath("database/mydatabase.mdb")&";"
		objConn = New OleDbConnection(strConnString)
		objConn.Open()
		
    End Sub

	Sub BindData()

		strSQL = "SELECT * FROM gallery WHERE GalleryName = '"& strGalleryName &"'"

		Dim dtReader As OleDbDataReader
		objCmd = New OleDbCommand(strSQL, objConn)
		dtReader = objCmd.ExecuteReader()
		
		'*** BindData to FormView ***'
		myFormView.DataSource = dtReader
		myFormView.DataBind()

		dtReader.Close()
		dtReader = Nothing

	End Sub

	Sub Page_UnLoad()
		objConn.Close()
		objConn = Nothing
	End Sub

    Sub myFormView_DataBound(ByVal sender As Object, ByVal e As System.EventArgs)
		
		'*** Image ***'
		Dim Image1 As Image = CType(myFormView.FindControl("Image1"),Image)
		IF Not IsNothing(Image1) Then
			Image1.ImageUrl = "images/"&myFormView.DataItem("Picture")
			Image1.Width = "100"
			Image1.Attributes.Add("OnClick", "window.open('images/"&myFormView.DataItem("Picture")&"')")
			Image1.Style.Add("cursor","hand")
			Image1.ToolTip = myFormView.DataItem("GalleryName")
		End IF

		'*** GalleryName ***'
		Dim lblGalleryName As Label = CType(myFormView.FindControl("lblGalleryName"),Label)
		IF Not IsNothing(lblGalleryName) Then
			lblGalleryName.Text = myFormView.DataItem("GalleryName")
		End IF

    End Sub

    Sub myFormView_ItemInserting(sender As Object, e As FormViewInsertEventArgs)
		Dim strFileName As String
		'*** GalleryName ***'
        Dim txtGalleryName As TextBox = CType(myFormView.FindControl("txtGalleryName"), TextBox)
		
        '*** If Select File Upload ***'
        Dim filPicture As HtmlInputFile = CType(myFormView.FindControl("filPicture"), HtmlInputFile)
       
        If Trim(filPicture.PostedFile.FileName) <> "" Then
            strFileName = System.IO.Path.GetFileName(filPicture.Value)
            filPicture.PostedFile.SaveAs(Server.MapPath("images/" & strFileName))
        End If
		
        strSQL = "INSERT INTO gallery (GalleryName,Picture) " & _
        " VALUES ('" & txtGalleryName.Text & "','" & strFileName & "') "
        objCmd = New OleDbCommand(strSQL, objConn)
        objCmd.ExecuteNonQuery()
		
		strGalleryName = txtGalleryName.Text
		myFormView.ChangeMode(FormViewMode.ReadOnly)
		BindData()
    End Sub
    
	Sub myFormView_ModeChanging(sender As Object, e As FormViewModeEventArgs)
        Select Case e.NewMode
            Case FormViewMode.Edit
                myFormView.ChangeMode(FormViewMode.Edit)
            Case FormViewMode.ReadOnly
                myFormView.ChangeMode(FormViewMode.ReadOnly)
        End Select
		BindData()
    End Sub

</script>
<html>
<head>
<title>ThaiCreate.Com ASP.NET - FormView</title>
</head>
<body>
	<form id="form1" runat="server">
		<asp:FormView id="myFormView" runat="server" DefaultMode="Insert"
		OnDataBound="myFormView_DataBound"
		onModeChanging="myFormView_ModeChanging"
		OnItemInserting="myFormView_ItemInserting">
            <ItemTemplate>
			<table width="100" cellpadding="5" border="1">
				<tr>
					<td valign="top" align="center">
						<asp:Image id="Image1" runat="server"/>
						<br />
						<asp:Label id="lblGalleryName" runat="server"></asp:Label>
						<br />
					</td>
				</tr>
			</table>
            </ItemTemplate>
             <InsertItemTemplate>
				  <asp:TextBox id="txtGalleryName" runat="server"></asp:TextBox><br />
				  <input id="filPicture" type="file" runat="server"><br />
				  &nbsp;<asp:LinkButton id="lnkUpdate" runat="server" CommandName="Insert">Insert</asp:LinkButton>
             </InsertItemTemplate>

		</asp:FormView>
		<asp:Label id="lblID" runat="server"></asp:Label>
	</form>
</body>
</html>


Screenshot

ASP.NET FormView Control






   
Share


ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท


ลองใช้ค้นหาข้อมูล


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2008-11-15 08:59:53 / 2009-07-07 10:19:05
  Download : Download  ASP.NET FormView Control - Add/Insert
 Sponsored Links / Related

 
ASP.NET FormView Control
Rating :

 
ASP.NET FormView Control - DataBind
Rating :

 
ASP.NET FormView Control - ItemTemplate
Rating :

 
ASP.NET FormView Control - DataBound
Rating :

 
ASP.NET FormView Control - AllowPaging
Rating :

 
ASP.NET FormView Control - XML
Rating :

 
ASP.NET FormView Control - AccessDataSource
Rating :

 
ASP.NET FormView Control - DataSet,DataTable,TableRows
Rating :

 
ASP.NET FormView Control - Edit/Update
Rating :

 
ASP.NET FormView & GridView Control
Rating :

 
ASP.NET FormView & DataList Control
Rating :

 
ASP.NET FormView & Visual Studio 2005,2008,2010
Rating :

 
ASP.NET FormView & GridView Control - VS 2005,2008,2010 (FX 2.0,3.5,4.0)
Rating :

 
ASP.NET FormView & DataList Control - VS 2005,2008,2010 (FX 2.0,3.5,4.0)
Rating :

 
ASP.NET FormView Control - Microsoft Access (.mdb) - System.Data.OleDb
Rating :

 
ASP.NET FormView Control - SQL Server 2000,2005,2008 - System.Data.SqlClient
Rating :

 
ASP.NET FormView Control - MySQL Database - MySql.Data.MySqlClient
Rating :

 
ASP.NET FormView Control - Oracle Database - System.Data.OracleClient
Rating :


ThaiCreate.Com Forum


Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   







Load balance : Server 02
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่