Great Indian Developer Summit 2009

Four well packed days with Information and Technology that too latest in trend and which is going to change the future is called Great Indian Developer Summit 2009. Not only that, thousands of participants, 75+ presentations on technologies, 15+ Labs driven by experts from all over the globe and all this organized by media leader Saltmarch Media in a great environment of IISC, Bangalore.
![]()
Rich Internet Applications
This year also as the previous years it has came to prove that whatever new in a developer's mind comes has been achieved and has not only given satisfaction to him but to the consumer too.
As a Developer & Designer, I pulled myself in the second day of the summit because this day the experts were gonna talk about RIA (Rich Internet Application), the future of web applications. On this particular day GIDS talked about following topics:
Web 2.0 & Social Applications
Enterprise 2.0
Mashups
Social Networking
Ajax In Action
Comet
Dynamic Scripting
Browsers & Rich UI
Rich Web Security
Rich Web Stories
There were five parallel sessions going on at a time, so I was not able to attend every session. But I was able to focus myself to the session of my interest. I am a developer on Microsoft platform and having a keen interest in new Microsoft Technologies, so picked up sessions targeted on Silverlight 3.
I have attended following sessions:
Unravelling the New in Microsoft Silverlight 3
Nahas Mohammed 



Deep Dive - Microsoft Silverlight Pipelines
Praveen Srivatsa 


Building Rich UI using ASP.Net AJAX, AXAJ Control Toolkit & jQuery
Harish Ranganathan 



Reusable Components for Building Killer RIAs (on Adobe Flex)
Anirudh Sasikumar 


You might be thinking that when I am talking about Microsoft Silverlight, what I was doing in the session for the Flex. The reason is very simple, when you have the chance to learn new technologies and side by side compare them with similar technologies, why shouldn't? So before leaving for the day I grabbed this opportunity too. I have also rated the presenters along with their contents. All over here I would like to say that I had a nice Thursday. The biggest takeaway for me was numerous seed of growth opportunities, which is a result of combined efforts of huge exposure to technology and GIDS.
To conclude this post here I would like to encourage the readers to participate in this kind of events. These events not only give you a chance to explore the new and happening world around you, but also provide a good networking environment, which in terms help you grow in your career.
Regular Expression with C#: Part 1
In this tutorial you will learn.
- Extract Text From The Web pages
- Use a special software (Expresso) to make writing Regular Expressions easier
- Write and Use Regular Expressions in C#
This tutorial is intended for people who know how to do some basic Regular Expressions and know the syntax of the language. Since there is a lot of material to cover I won’t go over everything.
Till a little while ago I never really thought much of Regular Expressions. I used them a couple of times just to validate an email address or web address etc. It was not till one day I thought of making a web scraping program that would deal with pages from a site and then store all the grabbed information in an xml file.
The need of grabbing the contents came across while studying the RSS technology. In RSS you need to send user a predefined output in XML format with some extra tags. In this tutorial I will not be reaching to that extent, but will give you all an idea about how to just grab the data from the site. Then its upon you, how to utilize the knowledge.
I will take the example of a google search result page, where the results are listed in a well organized manner. We will find out some text from the page for each result and display the result in my own format.
Step 1: Create a web application to host our functionality.
- Open Visual Studio 2005
- File Menu > New > Web Site
- Select ASP.Net Web Site from the listed project templates
- Select Language as Visual C# and Click Ok.
You will see the Default.aspx page in the solution explorer, if not add it.
Step 2: Write code to get the desired page source (Google Search Results).
- Drag n Drop a TextBox, Button and a Label Control on the Page in design mode.
- Rename TextBox1 to txtSearch, Button1 to btnSearch and Label1 to lblResults.
- On btnSearch Click event write the following code.
protected void btnGetRating_Click(object sender, EventArgs e)
{
if (string.IsNullOrEmpty(txtSearch.Text.Trim()))
{
txtSearch.Text = "Google";
}
string URL = txtSearch.Text;
string IMDBData = WebPage.getContents(URL);
string fullRating = getRating(IMDBData.Replace("n", "").Replace("rn", "").Replace("nr", ""));
lblResults.Text = fullRating;
}