huong dan su dung linqthings4sale trong dotnetnuke

34 574 0
huong dan su dung linqthings4sale trong dotnetnuke

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

To use this tutorial you need: 1. Visual Studio Visual Web Developer Express 2008 (download) or Visual Studio 2008 2. DotNetNuke (download) 3. ASP.NET 3.5 (or higher) (download) This tutorial will show you how to create a DotNetNuke module using LINQ to SQL. This will greatly speed module development. Also see: Creating a DotNetNuke Module using LINQ to SQL (Part 2) SETUP Follow one of the the options below to install DotNetNuke and to create a DotNetNuke Website:  Setting-up the Development Environment (using IIS)  Setting-up the Development Environment (without IIS)  Setting-up the Development Environment on Windows Vista (using IIS) Install Visual Studio Express 2008 if you haven't already done so. (download) Use Visual Studio 2008 to open DotNetNuke: If using DotNetNuke 4.7 or lower, you will get a message like this: Click Yes. This will add the needed changes to the web.config to allow LINQ to SQL to run. In Visual Studio, select "Build" then "Build Solution". You must be able to build it without errors before you continue. Warnings are ok. Are you Ready to Create the Module? You must have a DotNetNuke 4 website up and running to continue. If you do not you can use this link and this link to find help. DotNetNuke is constantly changing as it evolves so the best way to get up-to-date help and information is to use the DotNetNuke message board. Create the Table Log into the website using the Host account. Click on the HOST menu and select SQL Paste the following script into the box: Collapse CREATE TABLE ThingsForSale ( [ID] [int] IDENTITY(1,1) NOT NULL, [ModuleId] [int] NOT NULL, [UserID] [int] NULL, [Category] [nvarchar](25), [Description] [nvarchar](500), [Price] [float] NULL ) ON [PRIMARY] ALTER TABLE ThingsForSale ADD CONSTRAINT [PK_ThingsForSale] PRIMARY KEY CLUSTERED ([ID]) ON [PRIMARY] Select the "Run as Script" box and click "Execute". Set Up The Module If you haven't already opened the DotNetNuke site in Visual Studio (or Visual Web Developer Express), select File then Open Web Site. Select the root of the DotNetNuke site and click the Open button. Right-click on the App_Code folder and select New Folder. Name the folder LinqThings4Sale. In the Solution Explorer, double-click on the web.config file to open it. In the web.config file add the line: <add directoryName="LinqThings4Sale" /> to the <codeSubDirectories> section. This is done to instruct ASP.NET that there will be code created in a language other than VB.NET (which is the language of the main DotNetNuke project). Right-click on the App_Code folder and select Refresh Folder. The LinqThings4Sale folder icon will now change to indicate that the folder is now recognized as a special folder. Create the LINQ to SQL Class Right-click on the LinqThings4Sale directory located under the App_Code directory and select Add New Item. In the Add New Item window, select the LINQ to SQL Classes template, enter LinqThings4Sale.dbml for the Name and select Visual C# for the Language. Click the Add button. Wait a few minutes and the Object Relational Designer will open in the Edit window. From the toolbar, select View then Server Explorer. In the Server Explorer, right-click on the root node (Data Connections) and select Add Connection. Enter the information to connect to the database the DotNetNuke site is running on. This will not be the connection that the module will use when it runs (you will set that connection in a later step). This is only a connection to allow you to use the Object Relational Designer.Click the OK button. When the connection shows up in the Server Explorer, click the plus icon to expand it's object tree to display the tables. Locate the ThingsForSale table. Click on it and drag and drop it on the Object Relational Designer panel on the left. Click anywhere in the white space on the Object Relational Designer panel so that the LinqThings4SaleDataContext properties show in the Properties window (you can also select it from the drop-down in the properties window). In the Connection drop-down select SiteSqlServer (Web.config). This instructs the class to use the connection string of the DotNetNuke site that it is running on. The connection properties should resemble the graphic on the right. Close the LinqThings4Sale.dbl file. You should see a confirmation screen asking you to save it. Click the Yes button. The Data Access layer is now complete. Create The Module In the Solution Explorer, Right-click on the DesktopModules folder and select New Folder. Name the folder LinqThings4Sale. Right-click on the LinqThings4Sale folder and select Add New Item. From the Add New Item box, select the Web User Control template, enter [...]... System.Web.Security; System.Web.UI; System.Web.UI.HtmlControls; System.Web.UI.WebControls; System.Web.UI.WebControls.WebParts; System.Xml.Linq; using DotNetNuke; using DotNetNuke. Security; using LinqThings4Sale; namespace DotNetNuke. Modules .LinqThings4Sale { public partial class View : DotNetNuke. Entities.Modules.PortalModuleBase { protected void Page_Load(object sender, EventArgs e) { } } } Save the file From the Toolbar,...View.ascx for the Name, select Visual C# for the Language, and check the box next to Place code in separate file When the View.ascx page opens, switch to source view and locate the Inherits line Change it to: DotNetNuke. Modules .LinqThings4Sale. View Save the file Click the plus icon next to the View.ascx file in the Solution Explorer (under the LinqThings4Sale directory) Double-click on the... logged into your DotNetNuke site as "host", in the web browser, from the menu bar select "Host" Then select "Module Definitions" Click the black arrow that is pointing down to make the fly-out menu to appear On that menu select "Create Module Definition" In the Edit Module Definitions menu: • • • • • Enter "LinqThings4Sale" for MODULE NAME Enter "LinqThings4Sale" for FOLDER TITLE Enter "LinqThings4Sale" ... TITLE Enter "LinqThings4Sale" for FRIENDLY NAME Enter "LinqThings4Sale" for DESCRIPTION Enter "01.00.00" for VERSION Then click UPDATE Enter "LinqThings4Sale" for NEW DEFINITION Then click "Add Definition" Next, click "Add Control" In the Edit Module Control menu: • • • Enter "LinqThings4Sale" for TITLE Use the drop-down to select "DesktopModules /LinqThings4Sale/ View.ascx" for SOURCE Use the drop-down... under the PAGE FUNCTIONS menu click ADD In the PAGE MANAGEMENT menu under PAGE DETAILS: • • • • Enter "LinqThings4Sale" for PAGE NAME Enter "LinqThings4Sale" for PAGE TITLE Enter "LinqThings4Sale" for DESCRIPTION Click the VIEW PAGE box next to ALL USERS Then click UPDATE From the MODULE drop-down select "LinqThings4Sale" Then click ADD The module will now appear The tutorial is complete ... Toolbox, in the Data section, select the LinqDataSource control Drag the LinqDataSource control to the design surface of the View.ascx page Click on the options (right-arrow on the right side of the control) and select Configure Data Source In the Configure Data Source box, select LinqThings4Sale. LinqThings4SaleDataContext in the drop-down and click the Next button The Configure Data Selection screen... Methods to the Code behind Add these two methods to the code behind: Collapse protected void InsertButton_Click(object sender, EventArgs e) { this.FormView1.Visible = false; LinkButton1.Text = "Update Successful - Add Another Listing"; this.GridView1.DataBind(); } protected void InsertCancelButton_Click(object sender, EventArgs e) { this.FormView1.Visible = false; this.GridView1.DataBind(); } (The events... • • • Select ModuleId in the Column drop-down Select = = in the Operator drop-down Select None for the Source drop-down Click the Add button This instructs the LinqDataSource control to filter the results by ModuleId Each new instance of the module will have a different ModuleId We will pass this ModuleId to the LinqDataSource control in the code behind in a later step Click the OK button Click the... properties section, change Visible to False Do the same for the ModuleId and UserID fields Click the OK button The GridView will now resemble the image on the right Drag a FormView control to the design surface and place it a few spaces below the GridView (you will have to place a LinkButton control between them in a later step) On the options for the FormView control, select LinqDataSource1 on the Choose... Properties for the FormView, set the DefaultMode to Insert Also, in the Properties for the FormView, set Visible to False In the ToolBox, click on the LinkButton control Drag the control to the design surface and drop it between the GridView and the FormView In the properties for the LinkButton (if you have a hard time selecting the properties, switch to source view and double-click on " . System.Xml.Linq; using DotNetNuke; using DotNetNuke. Security; using LinqThings4Sale; namespace DotNetNuke. Modules .LinqThings4Sale { public partial class View : DotNetNuke. Entities.Modules.PortalModuleBase { protected. IIS) Install Visual Studio Express 2008 if you haven't already done so. (download) Use Visual Studio 2008 to open DotNetNuke: If using DotNetNuke 4.7

Ngày đăng: 16/03/2014, 22:35

Từ khóa liên quan

Mục lục

  • To use this tutorial you need:

  • Also see:

  • SETUP

  • Are you Ready to Create the Module?

  • Create the Table

  • Set Up The Module

  • Create the LINQ to SQL Class

  • Create The Module

  • Create the Code Behind

  • Code Behind for the LinqDataSource Control

  • Code Behind for the Add My Listing link

  • Code Behind for the GridView

  • Add Additional Methods to the Code behind

  • Create The Module Definition

  • The tutorial is complete.

Tài liệu cùng người dùng

Tài liệu liên quan