Welcome![Sign In][Sign Up]
Location:
Search - persist.

Search list

[CSharpHrManage

Description: ASP.NET开发技术详解源代码 将解决方案目录“\\简历管理系统\\hrmanage”拷贝到本机中,并设置目录hrmanage目录的虚拟目录名称为hrmanage。双击根目录hrmanage.sln解决方案文件,系统会自动调用Visual Studio .NET打开本解决方案,通过“解决方案资源管理器”可查看到各层类文件的实现代码。 如果设置Webs目录的虚拟目录名称不是hrmanage,则需要修改Webs目录下的Webs.csproj.webinfo文件,用记事本或其他文本编辑器打开,可以看到如下的设置: <VisualStudioUNCWeb> <Web URLPath = \"http://localhost/hotop100/Webs.csproj\" /> </VisualStudioUNCWeb> 修改路径为设置的虚拟路径即可。 此外,还需要修改数据库连接字符串,用记事本或其他文本编辑工具打开hrmanage目录下的Web.config文件,找到<appSetting>节点,如下所示: <appSettings> <!--此处设置数据库连接字符串--> <add key=\"ConnectString\" value=\"data source=localhost initial catalog=msrcn persist security info=False user id=sa pwd=hello workstation id=msrcn packet size=4096\"/> </appSettings> -ASP.NET Development Technology Comments on the source code of Solutions Catalog "\\ resume management system \\ hrma nage "to the copy machine, Contents hrmanage and set up the virtual directory for the directory name hrmanage. Double-click the root directory hrmanage.sln solutions, The system will automatically call Visual Studio.NET open this solution, by "solution for resource management" can be found on various floors of types of documents to the realization of code. If the installation of Webs directory virtual directory name is not hrmanage. Webs is a need to amend the Webs.csproj.webinfo directory paper, use Notepad or other text editor to open, we can see that the setup is as follows :
Platform: | Size: 396363 | Author: 林晓武 | Hits:

[Other resourceWEBBOOK

Description: 运行环境:Win 2000 Server + SQL Server 2000 + MS vs.net Framework   安装:  1、用相应解压工具解开BookShop.rar到某目录下,如C:\\BookShop,将其设置为Web共享。        2、将Database里边的数据文件到某目录下,如C:\\Db,启动SQL Server的查询分析器,      运行以下存储过程        sp_attach_db BookShop , c:\\db\\BookShop_Data.MDF , c:\\db\\BookShop_Log.LDF      如果无误的话这时应该在你的SQL Server服务器上建立了一个叫BookShop的数据库。        3、打开BookShop目录下的文件web.config(文本的),找到 <appSettings> <add key=\"strConnection\" value=\"data source=kiss-2iawrfcmv7 initial catalog=BookShop persist security info=False user id=sa workstation id=LJY packet size=4096\" /> 这部分,将(local)改为你的数据库服务器名,sa改为有权限访问BookShop数据库的用户。      4、打开IE验证,这个就不用教了吧:)
Platform: | Size: 2323601 | Author: cxd | Hits:

[Other resourceCNET2003BSERP

Description: B/S版ERP安装方法 1、安装IIS5.0、Microsoft .NET Framework 1.1及SQL Server2000 2、将目录Copy_of_ERP和webctrl_client复制到C:/Inetpub/wwwroot下,并将Copy_of_ERP目录设置成IIS虚拟目录 3、在SQL Server2000中新建一个Storage用户和LXTXERP数据库,然后将Data目录中的LXTXERP.BAK数据库备份文件还原 4、修改Copy_of_ERP目录下的Web.config文件的连接属性sa用户的密码: <add key=\"mydns\" value=\"data source=(local) initial catalog=LXTXERP persist security info=False user id=sa pwd=123 workstation id=jl packet size=4096\" /> 5、在Windows管理工具中打开Internet 服务管理器,运行Copy_of_ERP中的Login.aspx打开ERP登录页面,默认用户:admin 密码:123 6、OK
Platform: | Size: 4660654 | Author: wangyong | Hits:

[Other resourcesaleMIS

Description: 商品销售管理系统 1.首先确保您的机器上安装了SQL Server数据库。将SQL Server服务器名称改为JAMESLIN,如果不修改服务器名称,则需要修改VB程序,在frmLogin窗体的cmdOK_Click函数中,修改代码: strConn = \"Provider=SQLOLEDB.1 Integrated Security=SSPI Persist Security Info=False Initial Catalog=Sale Data Source=JAMESLIN UID=Admin PWD=111\" 即Source=JAMESLIN中的“JAMESLIN”改为您本机服务器名。 2.在SQL Server“企业管理器”中“安全性|登录”中,创建用户:Admin,其密码为111。 3.打开SQL Server“企业管理器”的“工具|还原数据库”菜单命令,在对话框在设置还原的数据库名为Sale,选择从“设备”还原,根据向导逐步选择本章目录的“数据库”子目录下的文件Sale Backup,从而建立数据库。 这样,就可以运行本章程序了。
Platform: | Size: 144514 | Author: 肖金星 | Hits:

[ADO-ODBCSQLHelper

Description: 重写了微软提供SQLHelper(共用的数据库调用接口) 1把SqlHelper的connectionString做成一个全局量,统一设置数据库连接字符串 2增加了返回特定表名的DataSet的各接口。 可在项目的config文件设置数据库连接字符串 private static string connectionString = System.Configuration.ConfigurationSettings.AppSettings[\"ConnectionString\"] <!-- application specific settings --> <appSettings> <add key=\"ConnectionString\" value=\"packet size=4096 user id=sa data source=localhost persist security info=True initial catalog=NorthWind password= \"/> </appSettings> 当然可以把数据库连接方法修改后直接用。-rewritten Microsoft SQLHelper (shared database Call Interface) a SqlHelper the connectionString caused an overall volume, uniform database connections increased by two strings to the specific name of the table in the DataSet interface. In the config files set database connection string private static string connectionString = System.Configuration.ConfigurationSettings.AppSettings [ "ConnectionString"] lt; ! -- Application specific settings -- gt; Lt; AppSettingsgt; Lt; Add key = "ConnectionString" value = "packet size = 4096 user id = sa data source = localhost persist security info = = True initial catalog NorthWind password =" / gt; lt; / appSettingsgt; of course, the database can be connected directly to amend the methods used.
Platform: | Size: 6542 | Author: 沈镇杰 | Hits:

[Database systemSQLHelper

Description: 重写了微软提供SQLHelper(共用的数据库调用接口) 1把SqlHelper的connectionString做成一个全局量,统一设置数据库连接字符串 2增加了返回特定表名的DataSet的各接口。 可在项目的config文件设置数据库连接字符串 private static string connectionString = System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"] <!-- application specific settings --> <appSettings> <add key="ConnectionString" value="packet size=4096 user id=sa data source=localhost persist security info=True initial catalog=NorthWind password= "/> </appSettings> 当然可以把数据库连接方法修改后直接用。-rewritten Microsoft SQLHelper (shared database Call Interface) a SqlHelper the connectionString caused an overall volume, uniform database connections increased by two strings to the specific name of the table in the DataSet interface. In the config files set database connection string private static string connectionString = System.Configuration.ConfigurationSettings.AppSettings [ "ConnectionString"] lt; !-- Application specific settings-- gt; Lt; AppSettingsgt; Lt; Add key = "ConnectionString" value = "packet size = 4096 user id = sa data source = localhost persist security info = = True initial catalog NorthWind password ="/gt; lt;/appSettingsgt; of course, the database can be connected directly to amend the methods used.
Platform: | Size: 6144 | Author: 沈镇杰 | Hits:

[Windows Developvc技术内幕5源代码(2)

Description: vc技术内幕5源代码,很经典的,对学习vc得人很有用的-vc technology insider 5 source code, very classic, to learn vc right people very useful
Platform: | Size: 1031168 | Author: 微微 | Hits:

[CSharpHrManage

Description: ASP.NET开发技术详解源代码 将解决方案目录“\简历管理系统\hrmanage”拷贝到本机中,并设置目录hrmanage目录的虚拟目录名称为hrmanage。双击根目录hrmanage.sln解决方案文件,系统会自动调用Visual Studio .NET打开本解决方案,通过“解决方案资源管理器”可查看到各层类文件的实现代码。 如果设置Webs目录的虚拟目录名称不是hrmanage,则需要修改Webs目录下的Webs.csproj.webinfo文件,用记事本或其他文本编辑器打开,可以看到如下的设置: <VisualStudioUNCWeb> <Web URLPath = "http://localhost/hotop100/Webs.csproj" /> </VisualStudioUNCWeb> 修改路径为设置的虚拟路径即可。 此外,还需要修改数据库连接字符串,用记事本或其他文本编辑工具打开hrmanage目录下的Web.config文件,找到<appSetting>节点,如下所示: <appSettings> <!--此处设置数据库连接字符串--> <add key="ConnectString" value="data source=localhost initial catalog=msrcn persist security info=False user id=sa pwd=hello workstation id=msrcn packet size=4096"/> </appSettings> -ASP.NET Development Technology Comments on the source code of Solutions Catalog "\ resume management system \ hrma nage "to the copy machine, Contents hrmanage and set up the virtual directory for the directory name hrmanage. Double-click the root directory hrmanage.sln solutions, The system will automatically call Visual Studio.NET open this solution, by "solution for resource management" can be found on various floors of types of documents to the realization of code. If the installation of Webs directory virtual directory name is not hrmanage. Webs is a need to amend the Webs.csproj.webinfo directory paper, use Notepad or other text editor to open, we can see that the setup is as follows :
Platform: | Size: 396288 | Author: | Hits:

[.netWEBBOOK

Description: 运行环境:Win 2000 Server + SQL Server 2000 + MS vs.net Framework   安装:  1、用相应解压工具解开BookShop.rar到某目录下,如C:\BookShop,将其设置为Web共享。        2、将Database里边的数据文件到某目录下,如C:\Db,启动SQL Server的查询分析器,      运行以下存储过程        sp_attach_db BookShop , c:\db\BookShop_Data.MDF , c:\db\BookShop_Log.LDF      如果无误的话这时应该在你的SQL Server服务器上建立了一个叫BookShop的数据库。        3、打开BookShop目录下的文件web.config(文本的),找到 <appSettings> <add key="strConnection" value="data source=kiss-2iawrfcmv7 initial catalog=BookShop persist security info=False user id=sa workstation id=LJY packet size=4096" /> 这部分,将(local)改为你的数据库服务器名,sa改为有权限访问BookShop数据库的用户。      4、打开IE验证,这个就不用教了吧:)
Platform: | Size: 2323456 | Author: cxd | Hits:

[SQL ServerCNET2003BSERP

Description: B/S版ERP安装方法 1、安装IIS5.0、Microsoft .NET Framework 1.1及SQL Server2000 2、将目录Copy_of_ERP和webctrl_client复制到C:/Inetpub/wwwroot下,并将Copy_of_ERP目录设置成IIS虚拟目录 3、在SQL Server2000中新建一个Storage用户和LXTXERP数据库,然后将Data目录中的LXTXERP.BAK数据库备份文件还原 4、修改Copy_of_ERP目录下的Web.config文件的连接属性sa用户的密码: <add key="mydns" value="data source=(local) initial catalog=LXTXERP persist security info=False user id=sa pwd=123 workstation id=jl packet size=4096" /> 5、在Windows管理工具中打开Internet 服务管理器,运行Copy_of_ERP中的Login.aspx打开ERP登录页面,默认用户:admin 密码:123 6、OK-B/S version of ERP installation method 1, the installation IIS5.0, Microsoft. NET Framework 1.1 and SQL Server20002, will webctrl_client directory Copy_of_ERP and copied to C:/Inetpub/wwwroot under Copy_of_ERP directory and IIS virtual directory set to 3, in SQL Server2000 in Storage to create a new user and LXTXERP database, and then Data directory LXTXERP.BAK database backup file to restore the 4, to amend Copy_of_ERP directory Web.config file Connection Properties sa user
Platform: | Size: 4660224 | Author: wangyong | Hits:

[source in ebooksaleMIS

Description: 商品销售管理系统 1.首先确保您的机器上安装了SQL Server数据库。将SQL Server服务器名称改为JAMESLIN,如果不修改服务器名称,则需要修改VB程序,在frmLogin窗体的cmdOK_Click函数中,修改代码: strConn = "Provider=SQLOLEDB.1 Integrated Security=SSPI Persist Security Info=False Initial Catalog=Sale Data Source=JAMESLIN UID=Admin PWD=111" 即Source=JAMESLIN中的“JAMESLIN”改为您本机服务器名。 2.在SQL Server“企业管理器”中“安全性|登录”中,创建用户:Admin,其密码为111。 3.打开SQL Server“企业管理器”的“工具|还原数据库”菜单命令,在对话框在设置还原的数据库名为Sale,选择从“设备”还原,根据向导逐步选择本章目录的“数据库”子目录下的文件Sale Backup,从而建立数据库。 这样,就可以运行本章程序了。
Platform: | Size: 144384 | Author: 肖金星 | Hits:

[Successful incentivezwddtxy

Description: 《世界 上最伟大的推销员》重在励志,通过对十个羊皮卷的反复诵读,培养人的 潜意识。长时间的坚持后,潜意识便转化为有益终生的好习惯。在日常生活和工作 中好的习惯是做任何事情获得成功的关键励志必看!- The world s greatest salesman Endeavourers focus, through the 10 volumes in sheep s clothing repeatedly read, cultured human subconscious. Persist long after the subconscious will be transformed into a good habit of useful life. In their daily lives and work habits are good to do anything Endeavourers key to the success of a must-see!
Platform: | Size: 130048 | Author: 董晓春 | Hits:

[JSP/JavaEMS

Description: 通过此例,学会理解dao,persist,business的区别和使用-Through this example and learn to understand the dao, persist, business and the use of the distinction
Platform: | Size: 5392384 | Author: dear_nanqing | Hits:

[Otherur

Description: 用户管理 (用户的权限管理) 1.结构:Ur.exe 主程序 Ur.mdb 用户数据库     UrConfig.ini 配置文件 2.调用: 在程序中直接调用可执行文件     Shell "Ur.exe Ur.mdb/SAIMOUR/LurName/LurLimit", vbNormalFocus 数据库/数据库密码/用户名称/用户权限 On Error GoTo err1 AppActivate "用户管理" Exit Sub err1: Shell App.Path & "\Ur.exe Ur.mdb/SAIMOUR/" & LurName & "/" & LurLimit, vbNormalFocus 3.配置文件:UrConfig.ini [权限菜单] Menu=用户管理,通信设置,班次设置,查询打印,报警管理,历史曲线,数据修改,仪表监控,系统退出 说明:权限菜单中最多可输入15项,第一项必需‘用户管理’以用于设置自身的权限管理,其它任意。 4.数据库:Ur.mdb 带密码保护 密码:SAIMOUR     包括一个表:Ur Ur为操作用户表     表结构为:序号、编号、用户、密码、权限。      5.打开:     UrMdbConStr = "Provider=Microsoft.Jet.OLEDB.4.0 Data Source=" & App.Path & "\Ur.mdb Persist Security Info=True Jet OLEDB:Database Password=SAIMOUR"-Ur.exe Ur.mdb      UrConfig.ini
Platform: | Size: 209920 | Author: 爱好编程 | Hits:

[Database systemStaffManagement

Description: 本程序的开发环境为VS2005,数据库为SQLSever2005 默认的连接字符串为:"DataSource=125.216.227.147 Initial Catalog=msdb Persist Security Info=True User ID=sa Password=111111" 管理系统为一个简单的人事管理系统,帮助初学者尽快的掌握这种语言,进而有助于系统改进,对初学者来说是很不错的选择。-This procedure for the development environment VS2005, the default database connection string SQLSever2005 for: " DataSource = 125.216.227.147 Initial Catalog = msdb Persist Security Info = True User ID = sa Password = 111111" management system as a simple personnel management system, help beginners master the language as soon as possible, and contribute to system improvement, for beginners it is very good choice.
Platform: | Size: 60416 | Author: 王婷 | Hits:

[JSP/Javapersist-js-0.1.0

Description: 客户端存储技术persist-js。 它是一个在客户端进行数据存储的JavaScript框架。这种存储主要针对的是那些可以离线运行的Web 应用程序。与其它客户端存储框架相比,PersistJS有一些优点。 当所用浏览器不支持时,会退而使用cookie -Storage Technology Client persist-js. It is a client-side data storage to the JavaScript framework. This store is aimed primarily at those who are able to run offline Web applications. With other clients compared to storage framework, PersistJS a number of advantages. When the browser does not support, we will use the old cookie
Platform: | Size: 28672 | Author: 吴生 | Hits:

[Internet-NetworkNetworkProtocolSimulate

Description: 一个javax写的关于CSMA的模拟,有pure Aloha,One persist,p-persist,和non-persist的模拟,不过后面几个的模拟自己不怎满意-CSMA simulation with Java. include pure Aloha,One persist,p-persist,和non-persist.
Platform: | Size: 55296 | Author: zeng | Hits:

[Software EngineeringEnterpriseJavaBeansProgramming

Description: This course provides you with knowledge and skills to Create reusable bean components Create bean properties Understand how introspection and reflection works Work with the bean event model Customize and persist beans Use bean components to create new applications Create beans using conventions in the JavaBeans API specification Use beans to bridge to component models that do not support Java technology See how beans can run in any environment that supports Java technology
Platform: | Size: 882688 | Author: Ami G | Hits:

[ListView/ListBoxCListCtrlExtendedPlugin

Description: CListCtrl 的扩展,可以实现排序,提示条,隐藏或显示某一列,编辑某一项,支持拖拽等功能。-Grid Control Based on CListCtrl Sorting Cell navigation and keyboard search Tooltips Hiding and showing columns Cell editing Grouping Clipboard (copy only) Persist column width, position and visibility OLE Drag and Drop (includes reordering of items)
Platform: | Size: 562176 | Author: 魏忠祥 | Hits:

[GUI DevelopCGridListCtrlEx_Demo

Description: Sorting Cell navigation and keyboard search Tooltips Hiding and showing columns Cell editing Grouping Clipboard (copy only) Persist column width, position and visibility OLE Drag and Drop (includes reordering of items)
Platform: | Size: 746496 | Author: pang | Hits:
« 12 3 »

CodeBus www.codebus.net