Orm - Choose A Code Generation Tools?
May 20, 2010
I am new to the code generation tools and I would like to know how does a tool like LLBGen Pro compares with the Entity Framework? On top of that my boos is really looking into a tool called CodeOnTime http://codeontime.com/default.aspx because he likes their good UI support.I am asking here because I really want an unbiased opinion.I am not sure if LLBGen can also generate the UI. So far all the development in the house we do it the classic way coding each layer manually. However we are in need of a fast prototyping tool.
View 3 Replies
Similar Messages:
Jun 3, 2010
Is there a way to force the MVC automatically generated code to follow the conventions you have set in your preferences? For example, I keep all curly braces on the same lines as their declaring class, method, etc, but when generating a controller, it completely disregards my settings. Is there a setting someplace to force the same code generation as other parts of project?
View 2 Replies
Jan 9, 2010
write a code, that generates the ASP.NET Desgin code automatically, for a given input. Can anyone guide on this.
View 2 Replies
Apr 4, 2011
For configuring my ASP.Net Application I'm using Custom Configuration Sections in my web.config. But I would like to get IntelliSense support for my own-build configuration sections. I figured that it is possible to create a XSD Schema Definition and include that in the web.config. But is there a less painful way of getting that schema?
With Configuration Section Designer I found a tool offering a GUI for creating my configuration section and generating the schema. But I like coding and I don't want to learn how to deal with another GUI.
So, is there a possibility of automatically generating the schema for my code?
View 1 Replies
Feb 13, 2010
provide me code or free tools for searching procedure within the site.
I want to search a particular topic by putting keyword in a textbox.
View 2 Replies
Nov 19, 2010
can anyone reccomend any (free) tools for documenting my code ? Ideally something that documents the program flow and objects/classes
View 3 Replies
Feb 13, 2011
In some crucial projects I relelized that time is one of the biggest concern while developing a project, specially a web application. I specifically about ASP.NET, does any Open Source tools exists for generating code for helping developers [like codesmith] to work smarter rather than work harder?
View 2 Replies
Feb 17, 2010
So the bottom line is that we are working on a large web based project in ASP.NET webforms that is extremely heavy on data editing operations and we are not getting the code reuse that we want out of the presentation layer. We are currently generating a good portion of our DAL and that works great. However, the strategies for standardizing, improving UI development time, and code reuse for the presentation layer are less clear. I have been researching DyanamicData, potential code generation, and writing our own custom controls, but i dont see an obvious place to focus our efforts.
View 1 Replies
Apr 28, 2010
I'm trying to take an existing bunch of code that was previously on a full .aspx page, and do the same stuff in a .ashx handler.
The code created an HtmlTable object, added rows and cells to those rows, then added that html table the .aspx's controls collection, then added it to a div that was already on the page.
I am trying to keep the code in tact but instead of putting the control into a div, actually generate the html and I'll return that in a big chunk of text that can be called via AJAX client-side.
HtmlTable errors out when I try to use the InnerHtml property (says it isn't supported), and when I try RenderControl, after making first a TextWriter and next an HtmlTextWriter object, I get the error that Page cannot be null.
View 2 Replies
Jan 18, 2011
I'm working on a C# web app and I've to handle some javascript code.
I can do it both using javascript injection from my .cs file, which I'm doing now or choose to include my code into an external js file.
I would like to know when you would prefer to choose one way over the other.
According to me, it can be more clear to put code in external .js file and it can ease debugging.
Code injection from code-behind would however keep together all the necessary code for my component.
View 2 Replies
Jul 11, 2010
I am generating my service code by reading wsdl and client proxy as well using wsdl.exe.
I did it successfully but when I create request object and try to verify with schema it gives me error root element is not found.
I use same schema which I have used in my wsdl document and using xsd.exe I generate my objects.
I found There is XmlRootElement is absent when I mention it no my parent type it works fine.
Problem is Why it's not generating when I used wsdl.exe to generate code.
View 3 Replies
Feb 9, 2010
How do you turn off the automatic code generation after double clicking on a control?
View 1 Replies
Sep 30, 2010
I have "Order" object with Columns Ticket,OTP and CustomerName etc.Intially on DataGrid, I'm binding Ticket only , when user clicks on "Column Chooser" button, another windows appears to pickup CustomerName,OTP columns to add specified column dynamically on Datagrid. Environment : Asp.net ,C# with Object Data source
Public Class Order
{
publc void Order()
{
}
public string Ticket
{
get
{
return this.strTicket;
}
set
{
this.strTicket = value;
}
}
public string OtpNumber
{
get
{
return this.strOtpNumber;
}
set
{
this.strOtpNumber = value;
}
}
public string CustomerName
{
get
{
return this.strCustomer;
}
set
{
this.strCustomer = value;
}
}
}
}
View 1 Replies
Jan 6, 2010
Is there any tool for Visual Studio 2008 which can reformat ASPX code to make it more presentable (eg insert line breaks, format the lines so they wrap when necessary, etc)?
View 5 Replies
Apr 28, 2010
Possible Duplicates: Advice on using ASP.net WebForms or MVC, How to decide which is right, WebForms or MVC when doing ASP.NET
I am new to web development and asp.net... I was going through asp.net website and 'n' number of question here in stackoverflow regarding Webforms or MVC.... But still as a beginner can't get an idea what to choose?
What should i choose webforms or mvc?If MVC,What should i know before getting started with it?If webforms,What should i know before getting started with it?
View 4 Replies
May 20, 2010
in vb.net while entering a new entry i want to assign a record a unique id like in case of numeric i do this way
[code]....
in this case m using itemid as a unique id and the format is 1,2,3... and m finding out the max and assigning to a new record but how to assign if the previous id is of the a00001,a00002,a00003,a00004...so on. how i do i produce a unique id in this case
View 2 Replies
Jan 26, 2010
I've a requirement to be able to generate PDF's within our (ASP.net) application. We need to meet the following requirements:
The text will be largely dynamic and must be added programatically. we'd like to base these generated documents off PDF templates provided by our designers. Some of the sections/pages may or may not be visible depending on certain conditions - we'd like the content to 'flow' upwards to fill the space when something is removed. Some of the pages may need to repeat, depending on certain conditions.Some of the PDF templates will be out of our control (we're populating application forms supplied by third parties), so being able to read in a blank PDF and populate it would be good.
I've looked at iTextSharp and it seems to do most of these things (i.e. I can take a PDF, edit it to include form fields where we need to fill data and then use iTextSharp to read that in as a template and populate the data), however, I'm not sure how then to go about potentially hiding whole sections and/or repeating pages.
View 5 Replies
Feb 14, 2011
I am trying to use the code available here to generate thumbnail images of url's that are returned as part of a search function in my website. Everything works fine when I am running through the development server in Visual Studio 2010, but when I push the code out to the server (Windows Server 2008 64bit w/ IIS 7 running in Integrated Mode) the code never returns a thumbnail. Is there something I need to do to get this working in IIS 7?
View 1 Replies
Aug 3, 2010
As concluded in this thread http://forums.asp.net/t/1583508.aspx MVC 2 converts some disallowed characters in the 'id' property of tag to the HtmlHelper.IdAttributeDotReplacement but the code to do that is internal to mvc and not exposed as i can see. Will I need to copy the code into my project so my custom herlps can do the same?
View 4 Replies
Sep 24, 2010
I have a bunch of C# functions with string, int and bool arguments that serve as data entry interfaces. I'd like to be able to create a webform for each method; a textbox for each string/int and a checkbox for each bool.
Is there a way to automate this process?
View 1 Replies
Dec 3, 2010
I'm a seasoned programmer with years of experience in Windows Forms development using different programming languages as already stated in this question: Will learning WPF improve my skills in ASP.NET? ASP.NET or any Web based programming language doesn't feel natural for me to explore or to use. Although I am unfamiliar with Web based technologies, my curiosity about these grows and grows. In addition to it, I am aware of the market place Web based programming takes. I would like to expand my knowledge and experience to the Web, though would it be just to know what I'm talking about instead of speculating whatever.
My experience as an information and process systems developer allows me to understand the concepts and some of the basics. I am aware that Web based applications are stateless, for instance, and that I need to use session or viewstate variables to keep the information the user is working with alive, otherwise I would loose them. I also understand the basics of Ajax based controls such as the UpdatePanel, which is to update or to refresh only a part of a UI page rather than reloading everything through the connection again. I can get that CSS defines styles for your page's sections and that you may change radically your Website's aspect just by changing the CSS reference. I am also aware of masterpages, which I don't really understand, in fact.
Programming Model
I just watched this video about choosing the right model for me/my application:
Choosing the Right Programming Model. If looks like ASP.NET MVC, which I thought was the best approach, is more for the veteran Web developers, people who are comfortable with Web applications. I have used a lot of DataBinding in Windows Forms, and WebForms seems to be more what I'm looking for into ASP.NET, until they say that MVC allows for Unit Testing, TDD and Agile methodologies, which I adhere to, as a certified Professional Scrum Master. I'm a bit mixed up on what will be more natural for me speaking of programming model.
Questions
Taking into account my base of knowledge and my experience, what programming model do you think I'm going to be more comfortable with? Will choosing one over the other allow me to get acquainted enough with ASP.NET to one day try the other model? In the video about choosing the Programming Model both sat on ASP.NET, I heard about DataBinding while using Web Forms, but no mention of DataBinding in the MVC model. Is there any possible DataBinding in MVC?
View 3 Replies
Apr 1, 2010
Here's the case I created this Permias.mdf on another solution that I had and then after that I decided not to use that solution and created a new website from visual studio and copy and paste the .mdf file to be used for this website.
Database 'C:\Permias.mdf' already exists. Choose a different database name.
View 2 Replies
Jul 20, 2010
I am using asp.net and c#.
I have a some classes. Some of the classes are having same methods insert, update and delete.
Each insert will insert different data to different table. (same for update and delete). What type of pattern can be applied for this kind of class.
View 3 Replies
Sep 1, 2010
How to use tools like localize substitution?
View 1 Replies
Oct 12, 2010
I need to know Is any tool available for Asp.net ?
My running website is sometimes getting too slow, So that I want to know where it happen. Also My Higher person asking Profiler report. Can anyone tell me how it looks?
View 2 Replies