0
votes
0answers
14 views

Refactoring existing code base

I have a code base which has the following structure: Lib layer class Actions { int Id; string Name; //... other properties public static GetActionById(int Id) { //DB query } } ...
0
votes
1answer
18 views

I need a way to remove “dead pages” from an ASP.NET 2.0-4.0 site

I've taken over about 30 projects at a company. Through the years the guy who ran things worked directly on the server. There's tons of dead pages that cause Visual Studio to break. I have JetBrains ...
0
votes
0answers
30 views

Best Practice with object creation and data access

I've got a TabContainer control which houses several tabs. Depending on the ActiveIndex property of the TabContainer I would like for a button click to create a Gridview in that tab and bind it to a ...
0
votes
0answers
14 views

Ancient ASP.NET custom control refactoring

I have here a custom control that is about 10 years old. It’s huge and complex. It takes as the data source list of fields and the sections (tabs). Fields could be different types (from simple input ...
1
vote
1answer
238 views

MS_POSITIONING Is Not a Valid Attribute of Elements BODY and DIv

We have a lot of legacy ASPX pages in our solution. Now we want to fix the code styling (bring it to the HTML5 standard) and generally clean the code on these ASPX pages. One of the issued I ran into ...
1
vote
3answers
58 views

how can I validate two ASP.NET pages have the same output HTML?

I am working on legacy code for an ASP.NET website, and I want to refactor. I've come to the conclusion that the easiest way to test for breaks is to compare the final HTML with the old page, ...
0
votes
2answers
99 views

Is it possible to refactor an ASP.NET application without access to the project files?

Scenario: I have access to an already published ASP.NET application running on a remote web server. The directory structure looks like this: I do not have access to the project/solution files as ...
0
votes
1answer
219 views

Refactor aspx page using Eval and If Statement C#

I was wonder if there is a better way of writing this code. <%#Eval("hasAccess").Equals(true) ? "<a href='/CaseActivities.aspx?" + Eval("caseURL") + "'>" + Eval("caseName") + "</a>" : ...
-1
votes
1answer
137 views

How to refactor this property's code? c# [closed]

I have a view model with properties that represent years and months: public IEnumerable<SelectListItem> Years { get { return new SelectList( ...
1
vote
2answers
112 views

How to withdraw code from an action method into helper in Asp.Net MVC 3?

I'm writing my app using Asp.Net MVC 3. In my controller I have two action methods with the very same code apart from one line. Here it is: [HttpPost] public ActionResult EditPost(Post ...
0
votes
2answers
290 views

Validating and parsing url parameters in ASP.NET

I'm maintaining a legacy WebForms application and one of the pages just serves GET requests and works with many query string parameters. This work is done in the code-behind and does a lot of this ...
0
votes
5answers
260 views

asp.net c# optimizing code

just feeling that i'm wasting loops here = CPU time, and was wondering if there's a way to optimize this code, or just minimize it. Basically what the code does is, goes trough every controls inside ...
1
vote
2answers
78 views

What is Best Practices with System.Web.Mvc ViewModels

I am working on a medium sized MVC project. The View Models have all been pulled out the web assembly to a separate library. One of the data structures is represented by a listbox and has a ...
0
votes
2answers
125 views

How do I simplify this jquery script?

I have an ASP.NET web forms project that I am trying to implement auto-tabbing in. I'm new to jquery, but I found a code snippet online to do auto-tabbing, and I want to use it to autotab multiple ...
0
votes
4answers
162 views

how to refactor a set of <= , >= if…else statements into a dictionary or something like that

there is a method that receives an int parameter and returns a string by checking parameter through a set of if...else statements : if(param == 1) { return "1"; } else if(param ==20) { return ...
2
votes
2answers
46 views

How to deal with almost the same enums?

I need to define enums in several classes to represent available actions for each class. . Now I wonder what is the best way to deal with this? 1) Create separate enums public enum Foo {Insert, ...
0
votes
1answer
69 views

How can I implement smarter coding principles into a VB.net site that uses inline code almost exclusively? [closed]

I'm a fairly inexperienced, self-taught web developer, and recently got hired as sort of a jack of all trades, 'figure stuff out' guy. One of the legacy projects I've been working on is a behemoth of ...
2
votes
1answer
166 views

Refactoring ASP.NET control names

I have an ASP.NET page with a code-behind file (.ascx file in the solution explorer, with .ascx.cs and .ascx.designer.cs files under it) I need to rename lots of controls on the page. If I change the ...
1
vote
2answers
138 views

Refactoring to Partial Classes - Guidance

I am dealing with a huge codebehind of a an ASP.NET user control. I am taking the approach of refactoring the huge class into a number of partial clasees separted by UI intent. Is there guidance on: ...
0
votes
1answer
87 views

How to extract anonymous function to named function? [closed]

Are there any tools that allows you to do simple refactoring? For example extract anonymous function to named functions?
1
vote
3answers
238 views

Finding the method in ASP.NET back-end

I'm refactoring some piece of... code, part of huge, complex .Net project. There is a piece of code like <asp:Button ID="btnSave" runat="server" CommandName="Update" ... /> Notice the command ...
2
votes
2answers
349 views

Refactoring Large Codebehinds - Repository pattern and Extension methods

I was hoping someone could help clarify my options regarding refactoring methods from code-behinds from ASP.NET webforms pages. As background, we have spent some time recently implementing the ...
6
votes
1answer
126 views

Refactoring method containing LINQ queries

I'm having a little trouble deciding the best way to refactor a method which contains LINQ queries which are very similar but not identical. Consider a method which is something along these lines: ...
5
votes
2answers
477 views

Identifying unused classes / controls / pages

We have a 10+ years old ASP.NET website project, with lots of unused / legacy user controls and pages. Is there a tool which can assist in the process of identifying these elements of the solution, ...
0
votes
2answers
109 views

How do I have an object subscribe to another's event while keeping the two loosely coupled?

I have the following bits of code which, in my mind, seem like the bare basics necessary to implement the Observer pattern. Is this standard, or am I doing something wrong? public class LayoutManager ...
6
votes
2answers
246 views

Trying to shy away from a singleton/god/manager class. Not sure how I am supposed to sustain functionality, though

I have a class which has been steadily growing over time. It's called LayoutManager. It started as a way for me to keep track of which dynamically created controls were on my page. So, for instance, ...
1
vote
1answer
58 views

How do I make a method that returns a Response in my utilities library?

In a code-behind I have a method that consists of the following: Response.Clear(); Response.ClearHeaders(); Response.ContentType = "xxx"; ...
3
votes
3answers
98 views

Please recommend a plan for migrating asp.net website to a three-layer architecture

I have an ASP.NET website that I built that has grown considerably in size and complexity. I did not create a DAL or BLL in the beginning because I was a newbie and decided that was simpler for me. ...
0
votes
1answer
201 views

Using HTML templates for building Dynamic pages: Refactoring existing web site

I have been tasked with refactoring a current website (foo.com) using .NET and C# that caters to multiple companies (abc.com, def.com, ghi.com, etc). The current website uses html templates for each ...
1
vote
1answer
174 views

Can I use reflection to get an existing variable by providing its name?

I'm taking over somebody's work and there is a lot of duplicated code. For now, I just want to change the following code: (the code I wanted to change is after this block of code) if ...
3
votes
1answer
389 views

Where should I put a function that is called many times?

This is a follow-up to this question How to avoid repeated code? I am using ASP.NET 4.0 with C# and I have a function called FillDropDownList(DropDownList ddl, DataTable dt, string dataValueField, ...
10
votes
11answers
573 views

Is embeding CSS/jQuery code in C# code bad?

I see this type of code when looking through our working code base: private Button AddClearButton() { return new Button { OnClientClick = ...
2
votes
7answers
65 views

Extact API from code library

Hi is there a technique available to easily extract all of the namespaces and methods etc from a code library compiled in C# for asp.net? I basically want to be able to print all available ...
1
vote
2answers
345 views

Upgrade Classic ASP Javascript include to .net

I'm working on an ASP.net 3.5 project that has evolved out of a Classic ASP project. We have two old Javascript files that are included in a few pages and have never been updated properly. The ...
2
votes
2answers
706 views

Sourcing AppSettings from database & cache

At my office, it has been deemed that we are to put our AppSettings for the Web.Config in the database. As such, I created the following, but have some doubts about a couple aspects of the code. So ...
0
votes
1answer
97 views

Type safe objectdatasources

Is there any way to make asp.net objectdatasources to be type safe. Meaning I get a compile time error if parameters or datatypes change during refactoring? Does anyone know any other method? Or can ...
2
votes
3answers
210 views

how do i refactor this code?

i have .net 3.5 and i would like to make a generic method. how do i refactor this code? case (int)Enums.SandwichesHoagies.Cheeses: if (this.Cheeses.Where(x => x.Id == ...
0
votes
1answer
103 views

Refactoring session variables

I'm visiting an app that's been in use for the past 2+ years and it is in desperate need of refactoring. It is of my own work, but you know what it's like when you visit old code again. Anyway I've ...
1
vote
0answers
22 views

VisualStudio Asp.NET MVC FindAllReferences in .aspx page

Is there a way to find all references of an HTML helper method in the views? In VisualStudio, when using the "FindAllReferences" option on a method (or when refactoring), only the references in .cs ...
3
votes
2answers
400 views

ASP.Net MVC help with refactoring

I'm quite new to both ASP.Net and MVC. I got the following code in my master page: <div id="main-menu" class="menu"> <% var items = ...
1
vote
1answer
90 views

How to correctly refactor a control's namespace in ASP.NET

I have this situation which is rather frustrating... I have some user controls where I would like to rename their namespace. However, when I do this my build fails because the .designer.cs file for ...
39
votes
9answers
13k views

What are some alternatives to resharper?

I'm considering purchasing a resharper license but would like to know if there are any possible alternatives to resharper and how would you rate these compared to reharper? It doesn't necessarily ...
2
votes
6answers
253 views

Can I improve performance by refactoring SQL commands into C# classes?

Currently, my entire website does updating from SQL parameterized queries. It works, we've had no problems with it, but it can occasionally be very slow. I was wondering if it makes sense to ...
5
votes
4answers
187 views

Refactoring an ASP.NET 2.0 app to be more “modern”

This is a hypothetical scenario. Let's say you've just been hired at a company with a small development team. The company uses an internal CRM/ERP type system written in .NET 2.0 to manage all of ...
1
vote
1answer
46 views

Is search and replace the only way to rename an asp control in the code behind file?

Is search and replace the only way to rename as asp control in the code behind file? I find this extremely annoying, but it is the only way I can find. Scenario: I'll find a variable that needs ...
2
votes
2answers
560 views

ASP.NET: Reusing the same Repeater ItemTemplate

I'm currently using a certain ItemTemplate for three repeaters that are all on the same page, but they are all bound to different data sources. Is there any way to refactor my web form without using a ...
1
vote
1answer
51 views

How can I improve our CM.AppSettings references

ASP.NET 3.5 Classes throughout our solution referenced ConfigurationManater.AppSettings[""] to get appSettings (from web.config). We decided we weren't happy with that. Folks were mistyping ...
1
vote
1answer
127 views

Searching asp.net Code

I want to search my asp.net pages and user controls to see which master page and base class they use. I mention search because we are re-factoring a large project and we need to track progress on the ...
2
votes
3answers
116 views

JQuery refactoring help needed

Here's my javascript code: <script type="text/javascript"> $(document).ready(function() { var currentInput = ''; var currentLabel = ''; ...
2
votes
3answers
930 views

C# ASP.NET Refactoring Codes | How To/ Guidelines

I am facing with a huge task at hand, start re-factoring our biggest asp.net web which created from asp classic, then ported to asp.net VS2003 and then later on ported on asp.net VS2005. Where codes ...

1 2