commit 6e10619a3022578b236e13ae634bcdb1f9eb4b12 Author: editor <@51Aspx.com> Date: Mon May 27 17:26:33 2024 +0800 初始化 diff --git a/51Aspx源码必读.txt b/51Aspx源码必读.txt new file mode 100644 index 0000000..89aa022 --- /dev/null +++ b/51Aspx源码必读.txt @@ -0,0 +1,41 @@ +MAGICAJAX无刷新注册向导项目源码 + +一、源码描述 +环境:VS2022  + +二、功能介绍 +用MagicAjax最新版本0.3.0结合Asp.net2.0中Wizard控件实现无刷新注册向导(含验证) +分为三步进行注册,并且每步都有验证,有上一步、下一步按钮并在一个页面内无刷新完成 +/bin 中MagicAjax.dll为MagicAjax控件 +magicajax-0.3.0-source.rar为控件源文件及文档(英文) +附:MagicAjax简介 +MagicAjax.NET(http://www.magicajax.net/)是一个开源框架,使开发者便捷的在页面中加入ajax技术.他只是一个即插即用的组件,不需要替换asp.net控件或写javascript代码。  +你无需对现有的webform方式开发有任何的改变,你只需配配web.config,拉拉控件就行了。 + +三、注意事项 +ctrl+F5运行即可。 + + + + + +作者: liudao + +如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/MagicAjaxWizard +------------------------------------------------------------------------------------------------ + + 源码服务专家 + 官网: https://www.51aspx.com + 讨论圈: https://club.51aspx.com/ + +平台声明: + +1.51Aspx平台上提供下载的资源为免费、共享、商业三类源码,其中免费和共享源码仅供个人学习和研究使用,商业源码请在相应的授权许可条件下使用; +2.51Aspx平台对提供下载的软件及其它资源不拥有任何权利,其版权归属源码合法拥有者所有; +3.著作权人发现本网站载有侵害其合法权益的内容或作品,请与我们联系( 登录官网与客服反馈或发送邮件到support@51Aspx.com ); +4.51Aspx平台不保证提供的下载资源的准确性、安全性和完整性; + +友情提示: + 一般数据库文件默认在 DB_51Aspx 文件夹下 + 默认账号密码一般均为51Aspx + 关于源码使用常见问题及解决方案,请参阅: https://www.51aspx.com/Help diff --git a/Backup/Default.aspx b/Backup/Default.aspx new file mode 100644 index 0000000..d1af75f --- /dev/null +++ b/Backup/Default.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="MagicAjaxWizard._Default" %> +<%@ Register TagPrefix="ajax" Namespace="MagicAjax.UI.Controls" Assembly="MagicAjax" %> + + + + + + ����MagicAjaxʵ����ˢ��ע����|-51aspx.com + + +
+ +
+ ����MagicAjaxʵ����ˢ��ע���򵼣�����֤�� + һ������MagicAjaxʹ�õ���ˢ��С����
����������Ҫע����û���


diff --git a/Backup/Default.aspx.cs b/Backup/Default.aspx.cs new file mode 100644 index 0000000..016adf2 --- /dev/null +++ b/Backup/Default.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Collections; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; + +//magicAjax��ɵ���ˢ��ע���� +//����:liudao +//51aspx.com��Ȩ���� ת����ע�� +namespace MagicAjaxWizard diff --git a/Backup/Default.aspx.designer.cs b/Backup/Default.aspx.designer.cs new file mode 100644 index 0000000..e4ee38d --- /dev/null +++ b/Backup/Default.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace MagicAjaxWizard { + + + /// + /// _Default class. diff --git a/Backup/MagicAjaxWizard.csproj b/Backup/MagicAjaxWizard.csproj new file mode 100644 index 0000000..a5d7800 --- /dev/null +++ b/Backup/MagicAjaxWizard.csproj @@ -0,0 +1,15 @@ + + + Debug + AnyCPU + 8.0.50727 + 2.0 + {94D55A72-CCC5-4F5A-A25C-FDEABFB843C5} + {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} + Library + Properties + MagicAjaxWizard + MagicAjaxWizard + + + true diff --git a/Backup/Properties/AssemblyInfo.cs b/Backup/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..be7d73c --- /dev/null +++ b/Backup/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("MagicAjaxWizard")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("MagicAjaxWizard")] +[assembly: AssemblyCopyright("Copyright © 2007")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] diff --git a/Backup/Web.config b/Backup/Web.config new file mode 100644 index 0000000..3546846 --- /dev/null +++ b/Backup/Web.config @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/Default.aspx b/Default.aspx new file mode 100644 index 0000000..d1af75f --- /dev/null +++ b/Default.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="MagicAjaxWizard._Default" %> +<%@ Register TagPrefix="ajax" Namespace="MagicAjax.UI.Controls" Assembly="MagicAjax" %> + + + + + + ����MagicAjaxʵ����ˢ��ע����|-51aspx.com + + + + +
+ ����MagicAjaxʵ����ˢ��ע���򵼣�����֤�� + һ������MagicAjaxʹ�õ���ˢ��С����
����������Ҫע����û���


diff --git a/Default.aspx.cs b/Default.aspx.cs new file mode 100644 index 0000000..016adf2 --- /dev/null +++ b/Default.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Collections; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; + +//magicAjax��ɵ���ˢ��ע���� +//����:liudao +//51aspx.com��Ȩ���� ת����ע�� +namespace MagicAjaxWizard diff --git a/Default.aspx.designer.cs b/Default.aspx.designer.cs new file mode 100644 index 0000000..e4ee38d --- /dev/null +++ b/Default.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace MagicAjaxWizard { + + + /// + /// _Default class. diff --git a/MagicAjaxWizard.csproj b/MagicAjaxWizard.csproj new file mode 100644 index 0000000..4428c5c --- /dev/null +++ b/MagicAjaxWizard.csproj @@ -0,0 +1,15 @@ + + + + Debug + AnyCPU + 8.0.50727 + 2.0 + {94D55A72-CCC5-4F5A-A25C-FDEABFB843C5} + {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} + Library + Properties + MagicAjaxWizard + MagicAjaxWizard + + diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..be7d73c --- /dev/null +++ b/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("MagicAjaxWizard")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("MagicAjaxWizard")] +[assembly: AssemblyCopyright("Copyright © 2007")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] diff --git a/UpgradeLog.htm b/UpgradeLog.htm new file mode 100644 index 0000000..38421f0 --- /dev/null +++ b/UpgradeLog.htm @@ -0,0 +1,15 @@ + + + + Migration Report +