jxlarrea

Stories submitted by jxlarrea

pixer.us :: online photo editor(pixer.us)

submitted by jxlarreajxlarrea(225) 5 years, 6 months ago

A very cool ASPNET, ajax based online photo editor. Allows basic operations like resizing, cropping, rotating, flipping as well as color adjustments and special effects filters. read more...

add a comment |category: |Views: 40

tags: another

All .NET Languages List (devel.oping.net)

submitted by jxlarreajxlarrea(225) 6 years, 1 month ago

Surely you use C# and VB.NET. Probably sometimes even J#. But did you know that there are dozens more languages? Cobol, Phyton, Pasacal, PHP syntax and even LISP are avaliable for the .NET Framework. read more...

add a comment |category: |Views: 13

tags: another

Watch ASP.NET Webcasts, Get Visual Studio 2005 for free (devel.oping.net)

submitted by jxlarreajxlarrea(225) 6 years, 2 months ago

More freebies from the good fellas at Microsoft: free webcast series specifically built to help PHP, JSP, and ColdFusion developers extend their skill sets to include ASP.NET. Attend three webcasts and get a bunch of great free stuff including Visual Studio 2005 Standard Edition, ASP.NET books, hosting and more. read more...

add a comment |category: |Views: 0

tags: another

Free USB Keys From Microsoft (devel.oping.net)

submitted by jxlarreajxlarrea(225) 6 years, 2 months ago

If you care (or not) about software licensing and filling a 4 question form go ahead and take a free Microsoft USB key drive containing handy FAQs, software licensing briefs, and additional information. read more...

add a comment |category: |Views: 5

tags: another

ASP.NET: Modifying the page output using Response Filters(devel.oping.net)

submitted by jxlarreajxlarrea(225) 6 years, 2 months ago

The task was apparently simple: highlight all the output text of a webform that matched query keywords in a search. Truth is, i had no idea how to manipulate the final rendered html in ASP.NET. Searching through the Response object i found a property that seemed useful: Response.Filter. read more...

add a comment |category: |Views: 7

tags: another

Url Rewriting with Regex for ASP.NET 2.0(devel.oping.net)

submitted by jxlarreajxlarrea(225) 6 years, 3 months ago

A new feature in ASP.NET 2.0 is it's built-in url rewriting support. When i looked into this new feature i found out it lacked regular expressions support, wich is really the point of an Url Mapper. ScottGlu at his blog, explains the reason why the ASP.NET team didn't implemented this feature. Basically they realized that a full featured version would want to take advantage of the next IIS 7.0 new features, specially the support for all content-types (images and directories). Anyway, it's really simple to implement a Url Rewriting Module with Regex support in ASP.NET. I wrote a quick and simple HttpModule for this. read more...

add a comment |category: |Views: 6

tags: another

ASP.NET: Client-side DataSets with Ajax.NET Pro(devel.oping.net)

submitted by jxlarreajxlarrea(225) 6 years, 3 months ago

Everybody loves .NET's DataSets. They provide the most simple yet powerful way to manipulate in-memory tables and data collections on the server-side. Good news for hardcore AJAX web developers: using Michael Schwarz's amazing Ajax.NET Professional library we can unleash the power of server-side DataSets to the client-side using Javascript. Not only that, but we can create a DataSet and populate it on the server, invoke it on the client side, modify it or create a new one and send it back to the server. read more...

1 comment |category: |Views: 17

tags: another