Home Portfolio Products Contact
Home > Products > FAQs For AspxFormsGen 4 & AspxCodeGen 4
Frequently Asked Questions
Because AspxFormsGen 4.0 is built on top of AspxCodeGen 4's engine, most of the FAQs can be answered for both products.
  • Is AspxFormsGen/AspxCodeGen 4.0 free?
    The Express edition is free. All the other editions are for sale.

  • Do I need to register AspxFormsGen/AspxCodeGen 4.0?
    No. You don't need to register AspxFormsGen/AspxCodeGen 4.0.

  • What's the catch with the Express Edition?
    No catch at all. You can download it for free. You can give copies to your friends. You don't have to register. There's no trial date end (because it's not a trial). There's no pop-ups reminding you to buy the Professional Plus Edition. No Activation required. Absolutely no catch.

  • Is AspxFormsGen/AspxCodeGen 4.0 a component?
    No it's not a component. It is a tool/application (.exe) that generates Web Forms/classes based on your MS SQL Server 2000/2005/2008 database or an attached SQL Express.

  • What do I need to generate Web Forms/codes using AspxFormsGen/AspxCodeGen 4.0?
    You need an MS SQL 2000 or 2005 database or an attached SQL Express, the .net framework 4.0 installed in your pc..

  • Are the generated Web Forms/classes compatible with Visual Studio 2008 or 2010?
    With Visual Studio 2010, yes. With Visual Studio 2008 no, because it will not compile .NET 4.0 classes. You can also use other IDEs if you like, the generated Web Forms/classes are not tied to a specific IDE.

  • Why do I need the .NET framework 4.0 installed in my pc?
    AspxFormsGen/AspxCodeGen 4.0 is created using .NET Framework 4.0.

  • Do I need to learn any language, or tool to start using the generated code?
    AspxFormsGen/AspxCodeGen 4.0 is super easy to use. As a matter of fact, there's just One main interface, and One main button to click. AspxFormsGen/AspxCodeGen 4.0 was created for C# or VB.NET programmers, therefore you need to know either one. There's also the understanding that you already know MS SQL 2000, 2005 or 2008, since you need a database for AspxFormsGen/AspxCodeGen 4.0 to look at to be able to generate the code.

  • Does AspxFormsGen/AspxCodeGen 4.0 generate CRUD (create, retrieve, update, delete) stored procedures?
    Yes. You have two (2) options; Dynamic SQL or Stored Procedures. When you choose Stored Procedures, AspxFormsGen/AspxCodeGen 4.0 will generate Stored Procedures, otherwise, it will generate Dynamic SQL.

  • Can AspxFormsGen/AspxCodeGen 4.0 generate code using an Oracle database?
    No. AspxFormsGen/AspxCodeGen 4.0 only supports MS SQL 2000, 2005, or 2008.

  • Can AspxFormsGen/AspxCodeGen 4.0 generate code using SQL Express?
    Yes. You need to attach your SQL Express database to an MS SQL 2000, 2005, 2008 database to do this.

  • Does AspxFormsGen/AspxCodeGen 4.0 overwrite my existing generated Web Form/code?
    Yes if the generated code's path is the same as your current project's path/directory. Note: Some files like the Business Object classes and the Data Layer classes are only generated once, they are not overwritten. Make sure to use a path/directory other than your project path/directory, then just copy the codes you need into your project/website. E.g. if your website path is: C:\Inetpub\wwwroot\YourApp, then choose a different path for your generated code, e.g. use C:\GeneratedCode instead.

  • Why do I get an "Access Denied" error?
    This means that you don't have access to the path/directory where you are trying to put the generated code. Make sure to choose a path/directory that you have write access to.

  • Why can't AspxFormsGen 4.0 access my MS SQL 2000/2005/2008 database?
    You need admin rights on this MS SQL 2000/2005/2008 database. If you already have admin rights to the database, then make sure that your username and password are correct. A blank password will not work.

  • I bought another product from you, is there a discount if I buy AspxFormsGen/AspxCodeGen 4.0?
    We want to make our customers happy, please email us at support@junnark.com and we'll send you a special link to a discounted price*.

  • Is my purchase of AspxFormsGen/AspxCodeGen 4.0 refundable?
    No. Please download AspxFormsGen/AspxCodeGen 4.0 Express, this is our free product.

  • Can I pick just the tables which I want the codes to be generated for?
    Yes.

  • Does it generate code for views?
    Yes.

  • Can I pick just the views which I want the codes to be generated for?
    Yes.

  • Is there a tutorial for AspxFormsGen/AspxCodeGen 4.0?
    Yes, please click the following links.


  • What language will the generated codes be in?
    C# or VB.NET.

  • What .NET Framework does the generated code supports?
    You can generate code for .NET Frameworks 4.0

  • Can I install multiple editions (or versions) of AspxFormsGen/AspxCodeGen?
    Yes.

  • Can I use the generated code (middle-tier and data-tier) in ASP.NET Web Forms, ASP.NET MVC project, or Win Forms?
    Yes.

  • Can I use the generated code (middle-tier and data-tier) in other clients such as Web Services, WCF, Silverlight?
    Yes. Bottom line: You can use the generated code with any client that uses C# or VB.Net (.NET framework 4.0)

  • Can I add my own code to the generated middle-tier and data-tier code?
    Yes. Add your code or override a function/method in the BusinessObject and DataLayer classes. These classes are only generated once and are not overwritten.

  • Can I edit/update the generated Stored Procedures?
    No. All generated stored procedures will be overwritten. Instead add your own stored procedure, then add the respective middle-tier code in the BusinessObject class and the data-tier code in the DataLayer class. *You can use the BusinessObjectBase and DataLayerBase classes as guide.