Click here to Skip to main content
15,889,860 members
Home / Discussions / ASP.NET
   

ASP.NET

 
RantRe: issue with accessing asp.net app over WAN Pin
Richard Deeming12-Oct-15 1:45
mveRichard Deeming12-Oct-15 1:45 
GeneralRe: issue with accessing asp.net app over WAN Pin
Member 1191972212-Oct-15 18:37
Member 1191972212-Oct-15 18:37 
GeneralRe: issue with accessing asp.net app over WAN Pin
Richard Deeming13-Oct-15 1:40
mveRichard Deeming13-Oct-15 1:40 
GeneralRe: issue with accessing asp.net app over WAN Pin
Member 1191972213-Oct-15 18:29
Member 1191972213-Oct-15 18:29 
GeneralRe: issue with accessing asp.net app over WAN Pin
Richard Deeming14-Oct-15 1:57
mveRichard Deeming14-Oct-15 1:57 
QuestionTime line for Work Completion for Asp.net C# and SqlServer DB Pin
macca249-Oct-15 1:23
macca249-Oct-15 1:23 
AnswerRe: Time line for Work Completion for Asp.net C# and SqlServer DB Pin
Richard Deeming9-Oct-15 2:25
mveRichard Deeming9-Oct-15 2:25 
AnswerRe: Time line for Work Completion for Asp.net C# and SqlServer DB Pin
jkirkerx9-Oct-15 9:51
professionaljkirkerx9-Oct-15 9:51 
If you have to write it from scratch, it may take that long for you to do it.
If you already had all the planning done, and you just had to code it, it could be 1/2 the time.

But the 80/20 rule still exists.

You spend 20% of your time writing the code, and 80% fixing things you never thought a user could do, unless of course you already have that experience. Writing and testing RegEx to validate input could consume all your quoted times.

I think a login page should not me more than 4 hours including the database table, cookies, and hashing using PWDTK, or whatever its called. And a logout page more than 2 hours.

Reports are time consuming, they take me about 3 days depending on the complexity, and if it's a HTML or Report Writer report.

When I quote jobs out, I quote the time to write the job 50%, and the time to test the job, make corrections, test validation, speed test, code analysis, user experience, 30%, and then artwork for buttons, icons, 20%. And then I add 20% more hours as a safety cap.

I do quote jobs in units of days, then break it down into hours.

I'll give you some tips that I have learned over the last 12 years.
Don't write the project for Microsoft SQL Server, use Entity Framework instead

I would just write SQL Linq for database functions, and not write out TSQL.

Just start out with BootStrap.css, and create a responsive design. Even if your using webforms and not MVC. With webforms, you can make a DLL for Entity Frameworks, or stick it in App_Code.

Write your HTML for Forms, such as textboxes as
<div class="form-group">
  <label>Enter user name:</label>
  <input class="form-control" />
</div>
and use the bootstrap.css to toggle form errors.

I know I'm going to get negative feedback on my suggestions here, but I should of implemented the practice years ago, and I regret not doing it. That SQL Linq is so slick, it's amazing what you can do with it. And the bootstrap.css allows you to just drop in any theme you want, plus it looks cool.
GeneralRe: Time line for Work Completion for Asp.net C# and SqlServer DB Pin
macca2413-Oct-15 0:58
macca2413-Oct-15 0:58 
QuestionRead Invoice number from pdf file Pin
Praveen Kandari8-Oct-15 22:35
Praveen Kandari8-Oct-15 22:35 
AnswerRe: Read Invoice number from pdf file Pin
ZurdoDev13-Oct-15 2:24
professionalZurdoDev13-Oct-15 2:24 
GeneralRe: Read Invoice number from pdf file Pin
Praveen Kandari15-Oct-15 1:36
Praveen Kandari15-Oct-15 1:36 
GeneralRe: Read Invoice number from pdf file Pin
ZurdoDev15-Oct-15 1:41
professionalZurdoDev15-Oct-15 1:41 
QuestionAsp.net Rapid Development Pin
macca248-Oct-15 3:38
macca248-Oct-15 3:38 
Questionissue in unifying domain.com with www.domain.com using 301 redirect Pin
9pagod7-Oct-15 5:23
9pagod7-Oct-15 5:23 
AnswerRe: issue in unifying domain.com with www.domain.com using 301 redirect Pin
Richard Deeming7-Oct-15 5:51
mveRichard Deeming7-Oct-15 5:51 
GeneralRe: issue in unifying domain.com with www.domain.com using 301 redirect Pin
9pagod7-Oct-15 6:10
9pagod7-Oct-15 6:10 
GeneralRe: issue in unifying domain.com with www.domain.com using 301 redirect Pin
Richard Deeming7-Oct-15 6:14
mveRichard Deeming7-Oct-15 6:14 
GeneralRe: issue in unifying domain.com with www.domain.com using 301 redirect Pin
9pagod7-Oct-15 6:27
9pagod7-Oct-15 6:27 
GeneralRe: issue in unifying domain.com with www.domain.com using 301 redirect Pin
Richard Deeming7-Oct-15 8:15
mveRichard Deeming7-Oct-15 8:15 
GeneralRe: issue in unifying domain.com with www.domain.com using 301 redirect Pin
9pagod7-Oct-15 16:04
9pagod7-Oct-15 16:04 
GeneralRe: issue in unifying domain.com with www.domain.com using 301 redirect Pin
Richard Deeming8-Oct-15 1:51
mveRichard Deeming8-Oct-15 1:51 
GeneralRe: issue in unifying domain.com with www.domain.com using 301 redirect Pin
9pagod8-Oct-15 2:31
9pagod8-Oct-15 2:31 
QuestionAccess to files from differentes server Pin
Wissem ElHami7-Oct-15 1:32
Wissem ElHami7-Oct-15 1:32 
AnswerRe: Access to files from differentes server Pin
ZurdoDev13-Oct-15 2:25
professionalZurdoDev13-Oct-15 2:25 

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.