Stories recently tagged with 'WebForms'

URL Routing with ASP.NET 4 Web Forms (VS 2010 and .NET 4.0 Series) (weblogs.asp.net)

submitted by crpietschmanncrpietschmann(11.3k) 2 years, 7 months ago

URL routing was a capability we first introduced with ASP.NET 3.5 SP1, and which is already used within ASP.NET MVC applications to expose clean, SEO-friendly “web 2.0” URLs. URL routing lets you configure an application to accept request URLs that do not map to physical files. Instead, you can use routing to define URLs that are semantically meaningful to users and that can help with search-engine optimization (SEO). With ASP.NET 4.0, URLs like above can now be mapped to both ASP.NET MVC Controller classes, as well as ASP.NET Web Forms based pages. read more...

add a comment |category: |Views: 47

tags: another

xVal with WebForms(john.rummell.info)

submitted by johnrummelljohnrummell(1321) 2 years, 10 months ago

I finally found some time last night to see what it would take to get xVal working in an ASP.NET Web Application Project. After a few hours I had something. I only needed to add two classes on top of xVal, DataAnnotationsValidationRunner and ModelValidator. read more...

add a comment |category: |Views: 34

tags: another

ASP.NET MVC: An Application Platform(developmentalmadness.blogspot.com)

submitted by developmentalmadnessdevelopmentalmadness(730) 2 years, 11 months ago

When deciding on your ASP.NET development platform I recently read a recommendation that boiled down to: application? WebForms. Web site? MVC. MVC isn't just for creating SEO/RESTful web sites. It's a full fledged application platform with everything you need. read more...

add a comment |category: |Views: 46

tags: another

You should NOT use ASP.NET MVC if. . . (jeffreypalermo.com)

submitted by JemmJemm(9604) 3 years, 1 month ago

Jeffrey Palermo shares his opionions when you should NOT use ASP.NET MVC. read more...

add a comment |category: |Views: 65

tags: another

TipJar: Title Tags and Master Pages(haacked.com)

submitted by crpietschmanncrpietschmann(11.3k) 3 years, 1 month ago

There are a couple of peculiarities worth understanding when dealing with title tags and master pages within Web Forms and ASP.NET MVC. These assume you are using the HtmlHead control, aka <head runat="server" />. read more...

add a comment |category: |Views: 14

tags: another

New ASP.NET Architecture(nayyeri.net)

submitted by sharplifesharplife(4570) 3 years, 3 months ago

Keyvan has written a nice post about the new architecture of ASP.NET web applications by describing how Microsoft is dividing ASP.NET to ASP.NET WebForms, ASP.NET MVC and ASP.NET Dynamic Data. read more...

add a comment |category: |Views: 70

tags: another

New ASP.NET Architecture(nayyeri.net)

submitted by sharplifesharplife(4570) 3 years, 3 months ago

Keyvan has written a nice post about the new architecture of ASP.NET web applications by describing how Microsoft is dividing ASP.NET to ASP.NET WebForms, ASP.NET MVC and ASP.NET Dynamic Data. read more...

add a comment |category: |Views: 70

tags: another

A better, easier way to make sure you've globalized everything(milkcarton.com)

submitted by akcoderakcoder(830) 3 years, 3 months ago

A better, easier way to make sure you've globalized everything in your application read more...

add a comment |category: |Views: 474

tags: another

10 Reasons ASP.NET Webforms (Still) Rock(leedumond.com)

submitted by leedumondleedumond(2144) 3 years, 4 months ago

With ASP.NET MVC being the new hotness, some just can't resist the urge to proclaim that, all of a sudden, Webforms Suck. Well, some of us have been making a living on Webforms for years, and despite proclamations to the contrary, Webforms are still useful and are here to stay. read more...

add a comment |category: |Views: 49

tags: another

http://codeclimber.net.nz/archive/2008/12/30/looking-at-oxite-the-ldqu(codeclimber.net.nz)

submitted by keyvankeyvan(4086) 3 years, 4 months ago

Simone Chiaretta shares his opinions about Oxite, the CMS built by MIX team as a showcase for ASP.NET MVC, and talks how the downsides of the software can help you apply your knowldege in ASP.NET WebForms in ASP.NET MVC. read more...

2 comments |category: |Views: 198

tags: another

ASP.net MVC Vs ASP.net Web Form(weblogs.asp.net)

submitted by wisemxwisemx(8074) 3 years, 10 months ago

Software Architects have been involving lot of debates about the approaches and architectures. Some of the examples are ORM Vs Store Procedures, REST Vs SOAP, etc. There is a debate happening inside the Microsoft community about ASP.net web form Vs ASP.net MVC. Many people thinking that ASP.net MVC will be replace webforms at least eventually and others are thinking that ASP.net MVC will not be replace webforms. Will ASP.net MVC replace webforms?. ASP.net MVC is an alternative approach to webforms rather than a replacement. It will not replace webforms and webforms will not replace ASP.NET MVC. The fact is that ASP.NET MVC and webforms will co-exist and that ASP.NET MVC is not a replacement for webforms. If you prefer ASP.net MVC use it and you feel webform is more comfortable, you can use it. . Both approaches are just choices and different approaches and choices are good things. Different choices are available for other platforms especially in the Java platform. read more...

add a comment |category: |Views: 80

tags: another

jQuery Goodness and ASP.NET AJAX - Take II(dotnet.dzone.com)

submitted by volume4volume4(910) 3 years, 10 months ago

So clearly I am obsessing about getting jQuery features into my WebForm applications. I would seriously love to see the following added ... read more...

add a comment |category: |Views: 28

tags: another

How to easily insert row in GridView with SqlDataSource?(aspdotnetfaq.com)

submitted by spavkovspavkov(1718) 4 years, 1 month ago

Asp.Net 2.0 GridView control is very powerful control. Developers at Microsoft really did a great job when designing it. Its like Swiss Army knife for selecting, editing, sorting, paging and displaying data. Combined with various DataSource controls (ObjectDataSource, SqlDataSource) it helps you execute most of your Read, Update and Delete operations without writing a single line of code. Off course, nothing is perfect. For example, creating new data is is one common task that is not so simple to accomplish with GridView. Let see how we can easily insert new rows of data using GridView and SqlDataSource... read more...

add a comment |category: |Views: 445

tags: another

How to do Cross Page Postbacks in Asp.Net 2.0 - Tutorial with examples(aspdotnetfaq.com)

submitted by spavkovspavkov(1718) 4 years, 1 month ago

Back in the days of ASP.NET 1.x there was no easy way to make post-backs to pages different than the current page (so called Cross Page Postbacks). From Asp.Net 2.0 this is solved with built-in features that allow us to easily send information from one page to another. Lets see how... read more...

add a comment |category: |Views: 5

tags: another

What's Ailing ASP.NET Web Forms(west-wind.com)

submitted by daviddavid(405) 4 years, 5 months ago

Rick Strahl summarises the disadvantages of the current ASP.NET WebForms model, and how the new ASP.NET MVC framework might address some of these issues. read more...

add a comment |category: |Views: 7

tags: another

Dynamically adding controls to ASPX pages (web forms) and assigning ev(dotnetzone.gr)

submitted by sotirisfsotirisf(315) 4 years, 6 months ago

Although I've seen a lot of articles describing how to dynamically add controls to a Web Form, few mention even a little hint to how you can make event handlers actually WORK with dynamically-added controls. This article may seem (and probably is) a beginner-level one, but I think it's essential to cover this issue. read more...

add a comment |category: |Views: 33

tags: another