ASP.NET 3.5 ScriptManager
-
I posted to delicious.com
All posts tagged 'asp.net ajax'
http://blogs.visoftinc.com/?tag=/asp.net+ajax
- Tags:
- ASPNET
June 22 2009, 9:03am | Comments »
-
I posted to delicious.com
Json.NET - James Newton-King
http://james.newtonking.com/projects/json-net.aspx
- Tags:
- C#
- ASPNET
- programming
- json
April 28 2009, 4:00pm | Comments »
-
I posted to delicious.com
Web platforms installed in one click…seriously.
OneClick Installer for IIS7
March 26 2009, 6:56am | Comments »
-
I posted to i-create.org
Silverlight 2 RSS Reader
http://i-create.org/2008/10/26/silverlight-2-rss-reader/
Well here it is I have been playing around with Silverlight2 and it is astronomically better than Silverlight1! This is an extermly simple feed reader with no design add more or less a proof of concept. I have been trying to do things in ActionScript and the do them in C#/SilverLight. I have leaned a great deal I have been studying the Silverlight Samples and found a feed reader. I got it installed it worked well but then I decided it would be better if I could add a combo box drop down that has options for the user So I went ahead and created one while doing this I also studied some more examples from Scott Guthrie’s (Maybe he should rename his blog Scott Gu to Guru) blog. So some of this example is just ASP.NET / C#. I found the necessity of crossxml kind of a pain but a necessary pain. So I have included an example of a clientaccess.xml with the source. I found Blend to be a little wonky namely I ran in to an issue with the Service Pack1 install you can read about that issue here. Although I don’t believe to many people will run into the same issue because Microsoft has resolved the issue. I find the integration between Blend and Visual Studio a little wonky but tolerable. I have also noticed for newbies who want to get started Microsoft has finally release a one click installer of their own otherwise known as the Microsoft Web Platform. So if you want you can install it and use it with this project. Here are a few of the numerous ways I can improve this feedreader add design make it look good. Create a webservice that allows for the input of the feeds and stores them in a database remove the Feeds.xml file and replace it with a database connection. Allow the database to input the Feed information and purge old information this would be better and it would resolve those tedious crossxml issues with silverlight. Little code snippet note you should download the whole project or this snippet really won’t do you any good.
?View Code CSHARP public string myURL; WebClient client = new WebClient(); public Page() { InitializeComponent(); XDocument feedXML; feedXML = XDocument.Load("Feeds.xml"); var feeds = from feed in feedXML.Descendants("Feed") where feed.Attribute("status") == null || feed.Attribute("status").Value != "disabled" select new FeedDefinition { Name = feed.Element("Name").Value, Url = feed.Element("Url").Value }; foreach (var feed in feeds) { feed.Name.ToString(); feed.Url.ToString(); } ddlFeeds.ItemsSource = feeds; } itemsList.Visibility = Visibility.Collapsed; itemContent.Visibility = Visibility.Collapsed; object myFeed = ddlFeeds.SelectedItem; FeedDefinition MyFeed = new FeedDefinition(); MyFeed = myFeed as FeedDefinition; myURL = MyFeed.Url;
Somethings I will point out with silverlight it’s runtime is a 5.8mb download in comparison to Flash Player being 1.8mb. One thing that Silverlight allows you to do is leverage DirectX on the users computer but as you and I know DirectX will only work for Microsoft compatible operating systems. Which is a buzz kill I think they should have leveraged OpenGL or Both. So in short you won’t get the same experience cross operating systems. Linux has been working on Moonlight and Microsoft is supporting Eclipse for Silverlight so those are pluses. One thing that is nice about Silverlight is the ability to create WPF applications and deploy them with a Click-Once install:) This is extremely similar to Adobe’s Air platform. One excellent example I have been studying is Microsoft’s UniveRSS WPF application excellent example of an RSS feed reading using directX 9! So check it out here. You can also find numerous other examples of Silverlight/WPF out in the wild already like this cool Facebook application. So in all I have mixed feelings about silverlight and I will continue to explore it and utilize it. I think flash users will be upset because they won’t have support for all the cool adobe effects built in but I don’t believe it will be long before users start writing code for similar effects and then share them on codeplex. I have been working on various experiments and then redo my
- Tags:
- i-create
- C#
- Silverlight
- ASPNET
October 26 2008, 1:44pm | Comments »