上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 42 下一页
摘要: 活动是工作流的基本单元。 以编程方式将活动添加到工作流中,与向根节点添加 XML DOM 子节点的方式类似。 当给定流路径中的所有活动都完成运行时,工作流实例即完成。 活动可以执行单个操作,如向数据库写入值,也可以执行复合活动并包含一组活动。 活动有两种行为类型:运行时和设计时。 运行时行为在执行时指定操作。 设计时行为在设计器中显示时可以控制活动的外观及其交互。Windows Workflow Foundation 包括一个标准活动库,并为您提供创建自己的活动的机制。 这支持工作流之间的扩展性和可重用性。 阅读全文
posted @ 2010-06-10 14:12 qiang.xu 阅读(295) 评论(0) 推荐(0) 编辑
摘要: So take a moment and look over the list below of the 12 best free cms options available. Some might seem really familiar (we lovewordpress) and some others might be new to you. They all deserve your attention for a few minutes. Hell, even test drive a few of them and see if there’s any tha 阅读全文
posted @ 2010-06-10 14:03 qiang.xu 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 经过一个月的奋战,网站终于部署完成,这是我的本人的第一个独立完成的项目,写写下一步的计划吧。1。通过网站的实战,找出网站在制作的过程中存在的问题,加强一下自己的弱项。2。研究一个asp.net mvc。3。研究几个asp.net开源的实例,现在的打算是学习blogEngine.net,通过学习上面的开源系统来明确网站建设中几个常用模块的构建。当然最重要的首先还是要整个网站总结一下,不仅是网站建设中的成功之处(其实大部分的是’教训‘吧)。哎,还有两个的课程设计需要完成,工作量还是很大的。暑假需要把数学建模的东西拿起来,同时看看wince的东东。。。现在当学 阅读全文
posted @ 2010-06-09 11:04 qiang.xu 阅读(225) 评论(0) 推荐(0) 编辑
摘要: Sqlserver中的表tablename 中有一个列ID是identity column,如果想重置它的值, 可以用下面的语句DBCC CHECKIDENT (TableName, RESEED,0)可参考http://msdn2.microsoft.com/en-us/library/ms176057.aspx 阅读全文
posted @ 2010-06-08 16:41 qiang.xu 阅读(2976) 评论(0) 推荐(0) 编辑
摘要: fileupload控件在ajax的UpdatePanel中是没有办法运行的,下面的代码:if (this.FileUpload1.HasFile)总是false、于是google:错误代码:前台:<html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title></title></head><body> &am 阅读全文
posted @ 2010-06-07 00:46 qiang.xu 阅读(3692) 评论(0) 推荐(0) 编辑
摘要: if(ds == null)//ds为空if(ds.Tables.Count == 0)//ds中没有表if(ds.Tables.Count == 1 && ds.Tables[0].Rows.Count == 0)//ds中的表没有数据 阅读全文
posted @ 2010-06-07 00:03 qiang.xu 阅读(1381) 评论(0) 推荐(0) 编辑
摘要: http://msdn.microsoft.com/en-us/library/aa992038(VS.80).aspxThe GridView control displays rows of data in a grid (an HTML table), displaying one data row per grid row. This walkthrough shows you how to extend the functionality of the GridView control so that individual grid rows can display data fro 阅读全文
posted @ 2010-06-06 16:48 qiang.xu 阅读(398) 评论(0) 推荐(0) 编辑
摘要: Error: Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 12030google :1.http://www.soidc.net/discuss/3/040101/00/539846_1.html往窗体里面拖一个 ScriptManager 在拖一个 UpdatePanel 往Panel 放一个but 阅读全文
posted @ 2010-06-06 12:56 qiang.xu 阅读(1131) 评论(0) 推荐(0) 编辑
摘要: //TransmitFile实现下载 protected void Button1_Click1(object sender, EventArgs e) { /* 微软为Response对象提供了一个新的方法TransmitFile来解决使用Response.BinaryWrite 下载超过400mb的文件时导致Aspnet_wp.exe进程回收而无法成功下载的问题。 代码如下: */ string strFileName = "三部闲置设备管理系统操作手册IEMS.ppt"; Response.ContentType = "application/x-zip-c 阅读全文
posted @ 2010-06-05 18:56 qiang.xu 阅读(224) 评论(0) 推荐(0) 编辑
摘要: -- alter the table T_Resourcesuse WebSiteDatabasegoalter table T_Resourses drop column goalter table T_Resourses add ID int primary key identity(1, 1) 阅读全文
posted @ 2010-06-05 17:28 qiang.xu 阅读(573) 评论(0) 推荐(0) 编辑
摘要: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&am 阅读全文
posted @ 2010-06-05 17:19 qiang.xu 阅读(279) 评论(0) 推荐(0) 编辑
摘要: asp.net网站在线图片裁剪1。下载地址 :http://webcropimage.codeplex.com/2。同时在上面还下载了demo程序,但是这个demo程序在ie 8下无法运行的,没有办法,只能google了。googleasp.net web crop image control ie8,得到 :http://cemsisman.com/asp-net-web-crop-image-control/Doesn’t seem to work in IE8. Am I missing something?Any update on when you will be 阅读全文
posted @ 2010-06-04 19:43 qiang.xu 阅读(427) 评论(0) 推荐(0) 编辑
摘要: http://msdn.microsoft.com/zh-cn/library/wdb4eb30(VS.80).aspx生成一系列窗体来收集用户数据是开发网站时的常见任务。通过提供一种允许方便地生成步骤、添加新步骤或对步骤重新排序的机制,ASP.NETWizard控件简化了许多与生成窗体和收集用户输入关联的任务。在本演练中,将使用 ASP.NETWizard控件将数据收集简化为一系列独立的步骤,而无需编写代码或在窗体步骤之间保存用户数据。您将创建一个简单的向导,用于收集用户名和电子邮件地址,然后在完成步骤中将收集的内容返回给用户。本演练中阐释的任务包括:向页中添加一个Wizard控件。向向导步 阅读全文
posted @ 2010-06-04 12:39 qiang.xu 阅读(2955) 评论(0) 推荐(0) 编辑
摘要: AttributeDescriptionPathThe path attribute can contain either a single URL path or a simple wildcard string (for example, *.aspx).TypeSpecifies a comma-separated class/assembly combination. ASP.NET searches for the assembly DLL first in the application's private \bin directory and then in the sy 阅读全文
posted @ 2010-06-03 20:34 qiang.xu 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 在制作网站是经常需要在两个页面之间交换数据并跳转,有时候需要使用动态的跳转来实现,比如在Main.aspx :<asp:TextBox runat = "Server" ID = "txt" ></asp:TextBox><asp:LinkButton runat = "Server" ID = "button" onclick="Click" >Search</asp:LinkButton& 阅读全文
posted @ 2010-06-02 15:42 qiang.xu 阅读(547) 评论(0) 推荐(0) 编辑
上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 42 下一页