I can pass data using parameters, but every Step within the wizard would need to have all of the fields of the previous step in the form in order to transfer all of the fields from the previous step(s). Would using params be a cleaner way to approach this? The checks within the POSTs are there to handle multiple posts.
I can pass data using parameters, but every Step within the wizard would need to have all of the fields of the previous step in the form in order to transfer all of the fields from the previous step(s). Would using params be a cleaner way to approach this? The checks within the POSTs are there to handle multiple posts.
[Authorize(Roles="Administrator,DR")]
public class RegistrarController : BaseController
{
...
C# Need help drying up my cont...
by zsysop.myopenid.com,
September 22, 2011 11:34,
8 refactorings, tagged with C# asp.net-mvc controller asp.net-mvc-3.0
Thanks for any help
using System; using System.Collections.Generic; using System.Linq; ...
C# Refactoring Suggestions
Was looking for some sugges...
public class MyClass1
{
private DataDestination1 _destination = new DataDestination1();
...
C# Need help with refactoring ...
Need some help optimizing &...
private ReportData SetPartnerInfo(ReportData reportData, string partnerPrefix, Partner partner)
{
PropertyInfo propertyInfo = reportData.GetType().GetProperty(partnerPrefix + "IDType");
...
C# Cleaning up this method
Is there any cleaner way to...
UI Layer
private void SaveEquipment()
...
C# Help me Refactor My Classes...
Please help me refactor thi...
C# On Refactoring Help Needed
by zsysop.myopenid.com,
March 24, 2009 22:41
How does sp_InsertAddress a...
public interface IName
{
string getLastName();
...
C# Refactoring Help Needed
Please help me make this co...
protected void btnUpload_Click(object sender, EventArgs e)
{
try
...
C# Import File
How would you refactor this?

I can pass data using param...