This blog will have all kinds of posts about Wally McClure. In it, there will be tons of .NET and computer programming posts as well as Wally's views on life in general. As you might guess, this site and blog help you get More Wally in your life. What more could anyone want? iPhone, Android, MonoTouch, MonoDroid, Mobile, HTML5, .NET, ADO.NET, ASP.NET, AJAX, jQuery, jQuery Mobile, ASP.NET AJAX, and Windows Azure............follow me on twitter at
Wally
I'm working on binding data from twitter into a grid with ASP.NET 4.0 AJAX in my Windows Azure application. One thing I need to do is to create bound links. Off the top of my head, I'd just use an <a href='url/{{ link }}'>........</a> Well, that wasn't the right thing. I looked at my example and started thinking about what was happening. The piece that I started thinking about more was the sys:attribute="......" type syntax. I started thinking that this was how to bind data to an attribute in a tag. I tried <a sys:href="{{ 'url' + link }}">.......</a>. Low and behold, the sytax I tried worked. I was getting links that worked.