The webforms tag has no wiki summary.
0
votes
2answers
217 views
I got first a graphic designer and later will get a programmer [closed]
I'm in a project to develop a new web application in asp.net. I'm in charge of software development, since I developed this web application some years ago. Now my customers want to redesign it from ...
6
votes
2answers
492 views
What is the difference between PHP and ASP.NET Web Forms in page size?
I plan to program web applications for small companies. When I read about ASP.NET Web Forms, I liked its way of building dynamic sites.
However, I have heard from a friend that Web Forms could ...
9
votes
3answers
271 views
Does the lack of states on HTTP make the protocol unfit for modern applications? [closed]
I changed from PHP to ASP.NET, now I’m working with webforms in a somewhat large company. I given some though and research to back my impressions on ASP.NET webforms and I came to the conclusion that ...
0
votes
2answers
153 views
Which asp.net technology fits this situation best?
I think I can count WebAPI out, but WebForms, WebPages, and MVC are all possibilities.
I want to create an asp.net web site that is primarily static content and links to other sites. The only ...
2
votes
1answer
300 views
Newbie ASP.NET developer being forced into MVC4 with WebForms
I recently got hired on as a new ASP.NET developer (C# code behind). When I arrived, I was told that they were moving to MVC 4, and so I bought two books on that. However, the other day I learned ...
1
vote
1answer
97 views
Good resources for a MVC.Net developer going back to WebForms? [closed]
Well it looks like I may be forced to build a new system in webforms after having worked exclusively in MVC for the last 3 years.
Initially I didnt think this was going to be a problem except the ...
2
votes
1answer
563 views
Should I implement BackBone.js into my ASP.NET WebForms applications?
Background
I'm trying to improve my group's current web app development pattern. Our current pattern is something we came up with while trying to rich web apps on top of ASP.NET WebForms (none of us ...
1
vote
1answer
84 views
multi-clients web application,should I use custom user controls or a common user control
Say my company is going to build a complicated asp.net web form education system. One of the module is web based registration. To make it flexiable, we decide to use user control(ascx) with ...
1
vote
1answer
117 views
How can I bind an interface to a class decided by an xml or database configuration at the launch of the application?
I'm re-working on the design of an existing application which is build using WebForms. Currently the plan is to work it into a MVP pattern application while using Ninject as the IoC container.
The ...
11
votes
7answers
1k views
ASP.NET Webforms developers and web designers: how to interact?
I'm an ASP.NET Webforms developer, and I face some problems when I deal with designers.
Designers always complain about the asp.net server controls. They'd rather just have an html file and create ...
1
vote
1answer
546 views
Alternative way of developing for ASP.NET to WebForms - Any problems with this?
So I have been developing in ASP.NET WebForms for some time now but often get annoyed with all the overhead (like ViewState and all the JavaScript it generates), and the way WebForms takes over a lot ...
5
votes
3answers
3k views
Best Architecture for ASP.NET WebForms Application
I have written an ASP.NET WebForms portal for a client. The project has kind of evolved rather than being properly planned and structured from the beginning. Consequently, all the code is mashed ...
1
vote
4answers
319 views
Where should I insert data into the database?
I am making a pretty standard PHP sign up form that will validate the data the user entered and then redirect to a page with a success message. I would like to store this data in a database. Should I ...
1
vote
1answer
333 views
use of script tag in different position of page [closed]
I found that sometimes the script don't run properly when I add script tag in the head section. But when I add script right before the ending tag of body it works fine.
What is the difference between ...
2
votes
3answers
233 views
Usage of repository between EF model and code consumer
I have binary data in my database that I'll have to convert to bitmap at some point. I was thinking whether or not it's appropriate to use a repository and do it there. My consumer, which is a ...