Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Rappelz > Rappelz Private Server
You last visited: Today at 06:39

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Release] ASPX-Registerpage

Discussion on [Release] ASPX-Registerpage within the Rappelz Private Server forum part of the Rappelz category.

Reply
 
Old   #1


 
Xijezu's Avatar
 
elite*gold: 0
Join Date: May 2011
Posts: 5,084
Received Thanks: 3,458
[Release] ASPX-Registerpage

Heya,

Yesterday asked me, if I could create an ASPX-Registerscript for him.

Well, after I finished it I thaught about releasing it.

Info: You need IIS for that.

HowTo Setup IIS:

Move this into your C:\inetpub\www\ - Folder and open 127.0.0.1 (or localhost).

First attachement is the Source-Code.
Second attachement: Compiled Script, you just have to edit the web.config file, also you can change the design via Default.aspx
Attached Files
File Type: rar ASPXRegisterscript.rar (122.3 KB, 258 views)
File Type: rar ASPXRegisterscriptCompiled.rar (124.1 KB, 253 views)
Xijezu is offline  
Thanks
12 Users
Old 04/26/2012, 22:13   #2
 
→Striker←'s Avatar
 
elite*gold: 0
Join Date: Oct 2011
Posts: 275
Received Thanks: 266
Not bad at all, Thanks for this release.
→Striker← is offline  
Thanks
1 User
Old 04/26/2012, 22:37   #3
 
elite*gold: 0
Join Date: Jan 2010
Posts: 390
Received Thanks: 396
I just want to ask is not an offense
Why do it harder in aspx when you can do it in less than 10min in php? i don't say its useless(i don't have dl that) i just want to know why use aspx xD

Thanks for you answerd =)

Moreover i really don't know this language is only based on web for iis or for other platform or other support like exe ^^
ptifou78 is offline  
Old 04/26/2012, 22:48   #4


 
Xijezu's Avatar
 
elite*gold: 0
Join Date: May 2011
Posts: 5,084
Received Thanks: 3,458
Quote:
Originally Posted by ptifou78 View Post
I just want to ask is not an offense
Why do it harder in aspx when you can do it in less than 10min in php? i don't say its useless(i don't have dl that) i just want to know why use aspx xD

Thanks for you answerd =)

Moreover i really don't know this language is only based on web for iis or for other platform or other support like exe ^^
PHP sucks at SQL-Connection. PHP doesn't support MSSQL anymore, so you have to take the SQL Server Driver for PHP which is ****.

Also I personally prefer ASPX instead of PHP.
Xijezu is offline  
Old 04/26/2012, 23:20   #5
 
elite*gold: 0
Join Date: Jan 2010
Posts: 390
Received Thanks: 396
Hummm ok thanks if i understand you ASPX is specialised on the work with SQL(Mysql too?). Because i have see a litlle the source and is look like C(more than php ^^) and it can be great

Moreover ASP is more speedy?
ptifou78 is offline  
Old 04/26/2012, 23:40   #6


 
Xijezu's Avatar
 
elite*gold: 0
Join Date: May 2011
Posts: 5,084
Received Thanks: 3,458
Quote:
Originally Posted by ptifou78 View Post
Hummm ok thanks if i understand you ASPX is specialised on the work with SQL(Mysql too?). Because i have see a litlle the source and is look like C(more than php ^^) and it can be great

Moreover ASP is more speedy?
Well, C# rather is based on SQL Server, for MySQL you have to download external .dll's, you can get them from MySQL itself.

It rather looks like C(#) because it is C# ?

Well, about the speed, ... I'm not sure about this, but I personally thing it should be "kinda the same".
Xijezu is offline  
Old 04/26/2012, 23:46   #7
 
elite*gold: 0
Join Date: Jan 2010
Posts: 390
Received Thanks: 396
Ok thanks a lot for all informations
Now i understand why C# is more know and use
ptifou78 is offline  
Old 04/27/2012, 05:42   #8
 
M>M's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 264
Received Thanks: 240
very nice work bro
M>M is offline  
Old 04/30/2012, 13:58   #9
 
elite*gold: 0
Join Date: Jul 2011
Posts: 71
Received Thanks: 12
what am i missing ..



im on a admin account

and here is my config info

Code:
  </configSections>
  <appSettings>
  <!--- - - - - - - - - - - - - - - - - - - - -  REGISTERSCRIPT - CONFIG - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
  <add key="sDbIP" value="(local)\SQLEXPRESS" />           <!-- Your Server-IP or SQL-Instanz: e.g. (local)\RAPPELZ, 127.0.0.1, localhost [...] -->
  <add key="sDbDatabase" value="Auth" />          <!-- Your Auth-Database (usually Auth) -->
  <add key="sDbUser" value="sa" />                <!-- Your SQL-Username (usually sa) -->
  <add key="sDbPassword" value="" />      <!-- Your SQL-Password -->
  <add key="bUseWindowsLogin" value="1" />        <!-- If you want to create a connection without using Username & Password (ONLY WORKS LOCAL!), set this to 1, else set it to 0-->
  <add key="sMD5Key" value="2011" />              <!-- Your MD5-Key. Default is 2011 -->
  <!-- - - - - - - - - - - - - - - - - - - - -  REGISTERSCRIPT - CONFIG - END - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  -->
  </appSettings>
  <connectionStrings/>
  <system.web>
Levelz is offline  
Old 04/30/2012, 14:45   #10
 
c1ph3r's Avatar
 
elite*gold: 0
Join Date: Sep 2008
Posts: 1,606
Received Thanks: 1,210
Looks like your .Net Framework or ASP.net is too old. Update both of them!
c1ph3r is offline  
Thanks
1 User
Old 04/30/2012, 21:14   #11
 
elite*gold: 0
Join Date: Jan 2011
Posts: 137
Received Thanks: 64
Quote:
Originally Posted by Levelz View Post
what am i missing ..



im on a admin account

and here is my config info

Code:
  </configSections>
  <appSettings>
  <!--- - - - - - - - - - - - - - - - - - - - -  REGISTERSCRIPT - CONFIG - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
  <add key="sDbIP" value="(local)\SQLEXPRESS" />           <!-- Your Server-IP or SQL-Instanz: e.g. (local)\RAPPELZ, 127.0.0.1, localhost [...] -->
  <add key="sDbDatabase" value="Auth" />          <!-- Your Auth-Database (usually Auth) -->
  <add key="sDbUser" value="sa" />                <!-- Your SQL-Username (usually sa) -->
  <add key="sDbPassword" value="" />      <!-- Your SQL-Password -->
  <add key="bUseWindowsLogin" value="1" />        <!-- If you want to create a connection without using Username & Password (ONLY WORKS LOCAL!), set this to 1, else set it to 0-->
  <add key="sMD5Key" value="2011" />              <!-- Your MD5-Key. Default is 2011 -->
  <!-- - - - - - - - - - - - - - - - - - - - -  REGISTERSCRIPT - CONFIG - END - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  -->
  </appSettings>
  <connectionStrings/>
  <system.web>
value="(local)\SQLEXPRESS" />

Replace it by your instance SQL
bwr_62 is offline  
Reply


Similar Threads Similar Threads
Web Item Mall aspx or php
05/22/2012 - Shaiya - 5 Replies
Hey i made aloot of searches and i cant get anythink that work. I wanna get Web item mall script it can be buged , but i realy nead this pls someone help me:) (i can trade other autentic script for it realy good one pm me)
[Release] 5165 RegisterPage with background music :D
04/11/2011 - CO2 PServer Guides & Releases - 5 Replies
Request close
Release Registerpage for Offi files 100 % Working!
10/25/2009 - Flyff - 1 Replies
Downloadlink: File-Upload.net - registerpage.7z Anleitung: 1. Installier xampp. 2. Füge denn Registerpage ordner in htdocs. 3. Öffne die config.ini und konfiguriere sie richtig.
Bot für Flash (.aspx)
07/05/2009 - Web Development - 1 Replies
Ich würde gerne einen Bot für ein Browsergame, das auf Flash basiert, schreiben oder geschrieben bekommen... Jetzt hab ich eine Frage: Geht das? Das Game ist unter w|w|w|.|powerofpolitics|.|c|o|m zu erreichen.



All times are GMT +1. The time now is 06:39.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.