ourcurrentfuture

Stories submitted by ourcurrentfuture

CSS Design for the design-challenged programmer(betaversion.org)

submitted by ourcurrentfutureourcurrentfuture(1225) 3 years, 7 months ago

Here is a great collection of tricks and advice for web programmers to make their web pages to be cleaner, more readable, and look more professional. Covers everything from a CSS reset through layout, font selection, colors and compatibility. read more...

add a comment |category: |Views: 14

tags: another

Introducing SemanticEngine.NET(blog.madskristensen.dk)

submitted by ourcurrentfutureourcurrentfuture(1225) 3 years, 8 months ago

Technologies or formats such as FOAF, APML, SIOC, XFN tags and microformats are some of the building blocks of the social aspects of the semantic web. They are used to create cross-site profiles of people and also represent relationships between them. XFN and microformats are somewhat easy to start using, but FOAF, APML and SIOC are a different story. Here's a new class library to make it easier.. read more...

add a comment |category: |Views: 235

tags: another

Splitting Text into Words using C#(nayyeri.net)

submitted by ourcurrentfutureourcurrentfuture(1225) 3 years, 8 months ago

Often times, we need to split a chunk of text into its words. Here's one example of how to do that. read more...

add a comment |category: |Views: 37

tags: another

Protecting Your Cookies: HttpOnly(codinghorror.com)

submitted by ourcurrentfutureourcurrentfuture(1225) 3 years, 8 months ago

HttpOnly cookies don't make you immune from XSS cookie theft, but they raise the bar considerably. It's practically free, a "set it and forget it" setting that's bound to become increasingly secure over time as more browsers follow the example of IE7 and implement client-side HttpOnly cookie security correctly. If you develop web applications, or you know anyone who develops web applications, make sure they know about HttpOnly cookies.originated from, so there is no cross-domain posting of the cookies. read more...

add a comment |category: |Views: 12

tags: another

CopySourceAsHtml Addin for Visual Studio 2005/2008(scottonwriting.net)

submitted by ourcurrentfutureourcurrentfuture(1225) 3 years, 9 months ago

CopySourceAsHtml (CSAH) is a free Visual Studio Add-In created by Colin Coller that turns Visual Studio code - with its indentation, color coding, and line numbers - into corresponding HTML with a few points and clicks of the mouse. This Add-In is great for pasting code samples into blogs and online articles. read more...

add a comment |category: |Views: 16

tags: another

Creating a Required Input Server Control (blog.ourcurrentfuture.com)

submitted by ourcurrentfutureourcurrentfuture(1225) 3 years, 9 months ago

One of the most common tasks we perform as ASP.NET developers is adding validated fields to a form. Typically, this involves adding: * a label to tell the user what information is expected * a TextBox, DropDrown, CheckBox or other element to collect the data * a Validator to check whether the data entered is good or not Rather than always adding these three elements, we can combine them into a single reusable server control. The less elements we need to add to a page, the less time it takes to do so. read more...

add a comment |category: |Views: 7

tags: another

Clone Detective for Visual Studio(codeplex.com)

submitted by ourcurrentfutureourcurrentfuture(1225) 3 years, 9 months ago

Clone Detective is a Visual Studio integration that allows you to analyze C# projects for source code that is duplicated somewhere else. Having duplicates can easily lead to inconsistencies and often is an indicator for poorly factored code. read more...

add a comment |category: |Views: 546

tags: another

7 principles of clean and optimized CSS code(smashingmagazine.com)

submitted by ourcurrentfutureourcurrentfuture(1225) 3 years, 9 months ago

With the popularity of CSS layouts and JavaScript-enriched web page experiences, it’s not uncommon, particularly for large sites, for the CSS files alone to grow in size, but there are some principles to consider during and after you write your CSS to help keep it tight and optimized. Optimization isn’t just minimizing file size — it’s also about being organized, clutter-free, and efficient. You’ll find that the more knowledge you have about optimal CSS practices, smaller file size will inevitably come as an direct result of their implementation. You may already be familiar with some of the principles mentioned in this article, but they are worth a review. Being familiar with this concepts will help you write optimized CSS code and make you a better all-around web designer. read more...

add a comment |category: |Views: 428

tags: another

40 CSS/JS Styling and Functionality Techniques(noupe.com)

submitted by ourcurrentfutureourcurrentfuture(1225) 3 years, 9 months ago

Designing effective web forms isn’t easy, as we need to figure out more practical styling and functionality techniques to provide a great user experience. Recently there have been a number of noteworthy techniques such as styling different form fields, live validation, Context highlighting, trading options from field to another, slider controls and more - using CSS and different Javascript libraries. Below we present findings of search to more than 40 tutorials and demos to showcase the capabilities and robustness of CSS and Javascript. read more...

add a comment |category: |Views: 439

tags: another

Enabling Javascript Intellisense In External Libraries(weblogs.asp.net)

submitted by ourcurrentfutureourcurrentfuture(1225) 3 years, 9 months ago

To get JavaScript IntelliSense working in VS 2008 SP1, you need to tell IntelliSense the location of the libraries that you're using. You do that by adding a special comment at the top of the .js file. Here's How.. read more...

add a comment |category: |Views: 239

tags: another

Using a DataPager with the GridView Control(mattberseth.com)

submitted by ourcurrentfutureourcurrentfuture(1225) 4 years, 1 month ago

One of the new controls that shipped with ASP.NET 3.5 is the DataPager. It's a flexible control that renders the paging elements data-bound controls that implement the IPageableItemContainer interface (currently only the ListView control). The big change with the DataPager is that it is decoupled from the data-bound control it provides paging support for. It can be embedded somewhere within the data-bound control's control hierarchy (like contained within the LayoutTemplate of the ListView), but it doesn't have to - It can exist on its own outside of the data-bound control as well. read more...

add a comment |category: |Views: 560

tags: another

31 Days of Resharper(excastle.com)

submitted by ourcurrentfutureourcurrentfuture(1225) 4 years, 11 months ago

JetBrains, the guys who make ReSharper, have a lot of info on their Web site that shows off some of the ReSharper features. But it's a lot to absorb in one sitting. And besides, it could use the point-of-view of an actual, happy customer, saying "These are my absolute favorite features" instead of the complete laundry list. So this guy set aside February on his blog for the "31 Days of ReSharper". read more...

add a comment |category: |Views: 54

tags: another

How to Write High-Performance C# Code(dotnet.sys-con.com)

submitted by ourcurrentfutureourcurrentfuture(1225) 5 years, 1 month ago

An excellent collection of performance tips for writing code in C#. Include topics and tips on Objects, Strings, Threading, and Collections. read more...

1 comment |category: |Views: 885

tags: another

Using System.Drawing to Create dynamic charts(sitepoint.com)

submitted by ourcurrentfutureourcurrentfuture(1225) 5 years, 5 months ago

Excellent beginning tutorial that covers using System.Drawing to create dynamic charts. It starts from the basics of figuring out coordinates and progresses through creating the chart and saving it as an image file. Downloadable code is included. read more...

add a comment |category: |Views: 265

tags: another

MenuPilot 1.0 (Open-Source Context Menu for ASP.NET 2.0)(codeproject.com)

submitted by ourcurrentfutureourcurrentfuture(1225) 5 years, 6 months ago

A nice way to add context menus to objects like DataGrids and Images. read more...

2 comments |category: |Views: 4

tags: another

In depth look at ASP.NET Compilation(west-wind.com)

submitted by ourcurrentfutureourcurrentfuture(1225) 5 years, 6 months ago

This article is an excellent discussion of how compilation and deployment works in ASP.NET 1.1 and 2.0. It explains the Web Deployment Projects and Web Application Projects add-ins that Microsoft has provided and gives a great overview of what's happening behind the scenes in Visual Studio. read more...

add a comment |category: |Views: 13

tags: another