Tag: Development

Community

The Filter Function

(Dan Mabbutt) Strings may be the second most useful “type” in VB.NET. (Integers are probably the first.) So there is a lot of useful string processing built into VB.NET. The Filter function is one and this article is a fast explanation showing how to use it.

Community

Searching in Strings

(Ged Mead) Many applications involve taking text data direct from the user, or from some source or other, and then having the application ‘read’ that text. You’ll often want to know if the text includes particular words, phrases or even individual letters. You can use the methods of the String cla

Community

Using JSONP in ASP.NET MVC

(Bipin Joshi) For security reasons browsers don’t allow cross-domain communication. However, in some legitimate situations cross-domain communication becomes necessary. A common work-around for this restriction is to use JSON with Padding or JSONP. Using JSONP, you return data to a caller embedded i