SilenceTi

Stories kicked by SilenceTi

Introducing Regulazy: Point & Click Regular Expressions(weblogs.asp.net)

submitted by gavinjoycegavinjoyce(25.7k) 5 years, 10 months ago

Roy Osherove has released a new Regular Expression (alpha) tool: "Regulazy is an attempt to build a small "Expert System" for creating .NET Regular Expressions. It lets the user create an expression based on a real life example of text they would like to parse. As the user interacts with Regulazy using the mouse, Regulazy offers the user possible expressions that would fit the currently selected text. As the user selects "rules" to apply on various parts of the text, a regular expression is built automatically in the lower application pane. The end result is a visual expression builder, that for most simple parsing operations, requires the user only to know what they would like to parse, and what the parsing rules should be - Regex Syntax is *not* needed." read more...

1 comment |category: |Views: 46

tags: another

Tip/Trick: Using Server Side Comments with ASP.NET 2.0(weblogs.asp.net)

submitted by MarthaBassMarthaBass(490) 5 years, 10 months ago

Scott Guthrie shares another trick with us, this time Server side comments. I had no idea they existed. "ASP.NET supports a little known feature called “server-side comments” that you can use to completely disable code/controls/html in a page. Server-side comments in ASP.NET are delimited using a <%-- --%> syntax." read more...

2 comments |category: |Views: 9

tags: another

Creating custom macros for dasBlog(blog.krisvandermast.com)

submitted by KvdMKvdM(1695) 5 years, 10 months ago

An article about creating custom macros to be used with dasBlog. read more...

2 comments |category: |Views: 6

tags: another

URL parsing and manipulation in .NET(damieng.com)

submitted by DamienGDamienG(1405) 5 years, 10 months ago

While .NET has a couple of URI classes they're pretty useless. They don't decode the various parts and you can't manipulate them either. Many projects I've seen (Subtext included) just try and manipulate them via strings which varying degrees of success. Here's a pure C# .NET URL decoder that uses a regex I developed for performance based on a VBScript class I developed a while back. read more...

2 comments |category: |Views: 639

tags: another

Tip/Trick: Custom formatting HTML in Visual Web Developer and VS.NET(weblogs.asp.net)

submitted by MarthaBassMarthaBass(490) 5 years, 10 months ago

Problem : You receive an HTML or ASP.NET page from another developer you work with whose html source formatting standards are different from your own (bad use of casing, inconsistent indenting, etc). You want to quickly clean-up and format the HTML “the right way” – where “the right way” is naturally defined as own your personal preference (and naturally every developer thinks their preference is "right" <g>). Solution : Visual Web Developer and Visual Studio 2005 include a rich HTML source formatting rules engine that enables you to configure exactly how you want HTML markup to look. read more...

add a comment |category: |Views: 8

tags: another

Customizing the CreateUserWizard Control(aspnet.4guysfromrolla.com)

submitted by gavinjoycegavinjoyce(25.7k) 5 years, 10 months ago

"In this article we will be stepping through the process of customizing the CreateUserWizard into a multi-step process. Some believe breaking up a large data entry form into a multi-step process is less off-putting to the user and encourages them to see the process to its end. The process steps we will be creating will include: * A step which will gather billing address information, * Another for shipping information, and finally, * One to collect user information " read more...

add a comment |category: |Views: 223

tags: another

Strongly-Typed Reflection(ayende.com)

submitted by gavinjoycegavinjoyce(25.7k) 5 years, 10 months ago

Ayende Rahien presents a solution for strongly-typed reflection. - "I refactor a lot, and I just hate it when everything compiles okay, and then things breaks on runtime. I think that static reflection will enable writing amazing code. The functionality is already built into the CLR (check the ldtoken/ldftn IL instructions and friends). It didn't make it into the 2.0 release, but I hope that it will be in the next release. In the meantime, the 2.0 Reflection has been optimized, so that is what we have for now. But it's not enough for me. ..." read more...

add a comment |category: |Views: 60

tags: another

ScottWater.CS.Module Pack II(scottwater.com)

submitted by gavinjoycegavinjoyce(25.7k) 5 years, 10 months ago

Scott Watermasysk has released an update to the CS.Module pack for Community Server. The ShareIt module is now configurable, you can now add/remove links as well as rearrange the order. A 'kick it' link is included, hopefully the 'kick it' link will be added to weblogs.asp.net in the next update read more...

add a comment |category: |Views: 3

tags: another

Kick wiki and REST API now live(weblogs.asp.net)

submitted by gavinjoycegavinjoyce(25.7k) 5 years, 10 months ago

I have just launched a wiki and REST API for the various kick sites, including dotnetkicks.com and sharepointkicks.com The API allows posts to be added and kicked among other functions. Tagging support in the API will be added in time, it is on the list of feature requests. read more...

2 comments |category: |Views: 9

tags: another

Bulletproof Sql Change Scripts Using INFORMATION_SCHEMA Views(haacked.com)

submitted by HaackedHaacked(5105) 5 years, 10 months ago

Discusses how to use the Information_Schema views to write idempotent schema changes. The Information_Schema views are a Sql-92 standard that Microsoft SQL Server supports. read more...

add a comment |category: |Views: 15

tags: another

Abstract Class vs Interface(geekswithblogs.net)

submitted by RobChappelRobChappel(2720) 5 years, 10 months ago

There are lost of discussion on the internet about the Interface vs Abstract class. Also, as base class whether we have to use interface, abstract class or normal class. This post points out a few considerations on which we can take decision about Interface vs Abstract class vs Class. read more...

add a comment |category: |Views: 79

tags: another

Cloud Control for ASP.NET(codeproject.com)

submitted by gavinjoycegavinjoyce(25.7k) 5 years, 10 months ago

Web sites such as del.icio.us, Technorati and Flickr, which allow tagging of their content, depict the popularity of tags using a tag cloud. The popular items have larger font sizes. This concept can be applied to any list of items where each item has an associated weight. For example, a list of products can be displayed in a cloud weighed by the cost of a product. Using the ASP.NET server control presented in this article, you can display your own domain specific items as a cloud. read more...

add a comment |category: |Views: 592

tags: another

Optimizing rendered page size(mikeoff.blogspot.com)

submitted by mikeonmikeon(5200) 5 years, 10 months ago

A short hint on how to optimize the size of html rendered by the asp.net page. read more...

add a comment |category: |Views: 17

tags: another

A list of IIS Resources(weblogs.asp.net)

submitted by gavinjoycegavinjoyce(25.7k) 5 years, 10 months ago

SteveSchofield lists some great IIS sites and blogs read more...

add a comment |category: |Views: 6

tags: another

DotNetKicks v2.0 is live(weblogs.asp.net)

submitted by gavinjoycegavinjoyce(25.7k) 5 years, 10 months ago

DotNetKicks.com v2.0 and SharePointKicks.com v2.0 have been released. The major new feature is tagging, you now have the ability tag stories with your own tags. The UI has also been improved to make better use of space. Hope you like. read more...

add a comment |category: |Views: 4

tags: another

LLBLGen Pro v2.0 released(weblogs.asp.net)

submitted by gavinjoycegavinjoyce(25.7k) 5 years, 10 months ago

The tagging features of DotNetKicks were build upon LLBLGEN Pro v2 beta, I'll upgrade to the released version later this week. The new features include .NET 2.0 support , generics, nullable types, System.Transactions, new validation framework... read more...

1 comment |category: |Views: 18

tags: another