Click here to Skip to main content
15,914,111 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Error Bind is not declared Pin
Member 1103130429-Nov-16 3:24
Member 1103130429-Nov-16 3:24 
GeneralRe: Error Bind is not declared Pin
ZurdoDev29-Nov-16 4:10
professionalZurdoDev29-Nov-16 4:10 
GeneralRe: Error Bind is not declared Pin
Member 1103130430-Nov-16 19:26
Member 1103130430-Nov-16 19:26 
GeneralRe: Error Bind is not declared Pin
ZurdoDev1-Dec-16 0:53
professionalZurdoDev1-Dec-16 0:53 
GeneralRe: Error Bind is not declared Pin
Richard Deeming29-Nov-16 4:29
mveRichard Deeming29-Nov-16 4:29 
GeneralRe: Error Bind is not declared Pin
Member 1103130429-Nov-16 20:35
Member 1103130429-Nov-16 20:35 
GeneralRe: Error Bind is not declared Pin
Richard Deeming30-Nov-16 2:12
mveRichard Deeming30-Nov-16 2:12 
QuestionHow OAuth is used to secure web api Pin
Tridip Bhattacharjee28-Nov-16 3:36
professionalTridip Bhattacharjee28-Nov-16 3:36 
AnswerRe: How OAuth is used to secure web api Pin
Richard MacCutchan28-Nov-16 6:38
mveRichard MacCutchan28-Nov-16 6:38 
QuestionHow HMAC authentication works for web api Pin
Tridip Bhattacharjee28-Nov-16 3:27
professionalTridip Bhattacharjee28-Nov-16 3:27 
AnswerRe: How HMAC authentication works for web api Pin
Richard MacCutchan28-Nov-16 6:37
mveRichard MacCutchan28-Nov-16 6:37 
QuestionDifferent behavior firefox, chrome, safari Pin
equelna27-Nov-16 6:19
equelna27-Nov-16 6:19 
QuestionHelp please how to run dlls or activex controls on the intranet zone without pop-us without changing IE's intranet zone settings? Pin
lowracer24-Nov-16 21:34
professionallowracer24-Nov-16 21:34 
AnswerRe: Help please how to run dlls or activex controls on the intranet zone without pop-us without changing IE's intranet zone settings? Pin
Richard Deeming25-Nov-16 2:11
mveRichard Deeming25-Nov-16 2:11 
Questionblocking malicious bots (but not SEs) with web.config Pin
Scott5223-Nov-16 3:41
Scott5223-Nov-16 3:41 
AnswerRe: blocking malicious bots (but not SEs) with web.config Pin
jkirkerx23-Nov-16 7:25
professionaljkirkerx23-Nov-16 7:25 
GeneralRe: blocking malicious bots (but not SEs) with web.config Pin
Scott5223-Nov-16 7:29
Scott5223-Nov-16 7:29 
QuestionRe-Developing asp.net webform to MVC Pin
hussain.attiya18-Nov-16 6:21
hussain.attiya18-Nov-16 6:21 
AnswerRe: Re-Developing asp.net webform to MVC Pin
Nathan Minier18-Nov-16 8:31
professionalNathan Minier18-Nov-16 8:31 
GeneralRe: Re-Developing asp.net webform to MVC Pin
F-ES Sitecore20-Nov-16 22:28
professionalF-ES Sitecore20-Nov-16 22:28 
GeneralRe: Re-Developing asp.net webform to MVC Pin
Nathan Minier22-Nov-16 1:13
professionalNathan Minier22-Nov-16 1:13 
GeneralRe: Re-Developing asp.net webform to MVC Pin
Afzaal Ahmad Zeeshan24-Nov-16 2:24
professionalAfzaal Ahmad Zeeshan24-Nov-16 2:24 
GeneralRe: Re-Developing asp.net webform to MVC Pin
Nathan Minier26-Nov-16 2:20
professionalNathan Minier26-Nov-16 2:20 
AnswerRe: Re-Developing asp.net webform to MVC Pin
F-ES Sitecore20-Nov-16 22:37
professionalF-ES Sitecore20-Nov-16 22:37 
AnswerRe: Re-Developing asp.net webform to MVC Pin
Kornfeld Eliyahu Peter20-Nov-16 22:48
professionalKornfeld Eliyahu Peter20-Nov-16 22:48 
The main difference between ASP.NET Forms and MVC (except the strict separation of concerns), is where is your code-behind, if any...
The main concerns you have to look for:
1. Time - MVC is not RAD!!!
2. Separation. While in ASP.NET Forms you could bend the rules and mix layers MVC will break under same conditions, and for that the design/develop cycle must be more precise and time consuming...
3. Knowledge of client side technologies... MVC gives you grate control over the final output of rendering, but it can be a burden as you HAVE TO take care for almost every details for your own...
4. OO? Not really. MVC views can not inherit the same way web forms do, so all the idea of master pages and inheritance must be redesigned...

To make it clear - there is no actually anything will stop you from porting your application, but it will be a big challenge and you and your team will have to learn a lot of new things and ways of doing them...

On a personal note: We are in the middle of a similar process. We are merging an ASP.NET Forms and a Win Forms application into a new - modern web application. We are talking about thousands of pages in the final project...
Our final solution is to write our own framework, that enables developing the same way we used to do with Web Forms, but translates old style code to MVC like... So we actually mixing ASP.NET Forms and MVC in a way that still enables RAD development with full OO, but take advantages of the MVC (modern) based development...
Skipper: We'll fix it.
Alex: Fix it? How you gonna fix this?
Skipper: Grit, spit and a whole lotta duct tape.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.