iftekharahmedamit
Name: iftekharahmedamit
Score: 15
Last Seen: 363 days, 20 hours, 40 minutes ago
Member Since: 19 November, 2008
DotNetShoutout
atom rss
7
Shouts

Web 2.0 | Reading and Writing BLOB Data to MS SQL or Oracle Database

published 1249 days, 15 hours, 35 minutes ago posted by farooqkaiserfarooqkaiser 1250 days, 7 hours, 11 minutes ago
Saturday, December 19, 2009 10:14:29 AM GMT Friday, December 18, 2009 6:38:22 PM GMT
In this article, i will examine how to store and retrieve binary files such as image or PDF into MS SQL or Oracle database. Reading a File into a Byte Array 1:byte[] mbarrImg = null; 2:using (FileStream fs = new FileStream(FileName, FileMode.Open, FileAccess.Read, FileShare.Read)) 3: { 4: mbarrImg = newbyte[fs.Length]; 5:int iBytesRead = fs.Read(m_barrImg, 0, (int)fs.Length); 6: fs.Close(); 7: } Saving BLOB data from a file to Oracl... (more)
category: Data | clicked: 2 | 1 comment | | source: www.fairnet.com
tags: SQL Server, .NET, C#, Oracle
5
Shouts

ASP.NET MVC 2 RC is released today - Amit's Blog

published 1249 days, 15 hours, 35 minutes ago posted by iftekharahmedamitiftekharahmedamit 1250 days, 7 hours, 52 minutes ago
Saturday, December 19, 2009 10:14:29 AM GMT Friday, December 18, 2009 5:57:14 PM GMT
Release Candidate of ASP.NET MVC 2 is released today. Brief Description ASP.NET MVC 2 is a framework for developing highly testable and maintainable Web applications by leveraging the Model-View-Controller (MVC) pattern. The framework encourages developers to maintain a clear separation of concerns among the responsibilities of the application – the UI logic using the view, user-input handling using the controller, and the domain logic using the model. ASP.NE... (more)
category: Web Dev | clicked: 1 | comment | | source: amitbd.com
tags: ASP.NET MVC, ASP.NET MVC 2.0, ASPNETMVC, ASP.NET MVC 2, MVC 2, MVC, ASP.NET
4
Shouts

Dean Hume - Minify Javascript files automatically with a T4 template

posted by deanomachinodeanomachino 1251 days, 8 hours, 33 minutes ago
Thursday, December 17, 2009 5:16:10 PM GMT
Minify Javascript files automatically with a T4 template After my last post, I decided to dive a little more into T4 templates and learn more about them. After some goofing around, I decided to write a template that would minify js files automatically using the Yahoo YUI compressor for .net - http://www.codeplex.com/YUICompressor. T4 is a code generator that is built into Visual Studio, so you can start playing straight away. In order to use my T4 template, you simply need to download a copy o... (more)
category: Web Dev | clicked: 0 | comment | | source: www.deanhume.com
7
Shouts

World# - Real Time 3D Augmented Reality with Silverlight

published 1248 days, 10 hours, 5 minutes ago posted by http://kodierer.blogspot.com/http://kodierer.blogspot.com/ 1251 days, 2 hours, 28 minutes ago
Sunday, December 20, 2009 3:44:28 PM GMT Thursday, December 17, 2009 11:21:15 PM GMT
Real Time 3D Augmented Reality in Silverlight 4 using the webcam API. (more)
category: Metro | clicked: 1 | comment | | source: kodierer.blogspot.com
tags: Silverlight, dotnet, SL4, AR, CSharp
6
Shouts

Extending the SMF for the HVP Silverlight Geek - Jesse Liberty

published 1249 days, 15 hours, 35 minutes ago posted by jantujantu 1250 days, 14 hours, 42 minutes ago
Saturday, December 19, 2009 10:14:29 AM GMT Friday, December 18, 2009 11:07:53 AM GMT
I’m going to document what happens when I try to extend the Silverlight Media Framework (SMF) for the Silverlight HyperVideo Player as I do it. This article is part of the Mini-Tutorial Series This article is part of the Silverlight HVP Documentation My plan is to follow along with this video (part of the SMF documentation) and adapt it to extending the SMF player already embedded in the HVP source code so as to add a pse... (more)
category: Metro | clicked: 0 | comment | | source: blogs.silverlight.net
tags: Mini-Tutorial, Building Apps, HyperVideoProject, Silverlight 4, Blend
6
Shouts

6 Of My Favorite Visual Studio Shortcuts

published 1249 days, 15 hours, 35 minutes ago posted by HatimRHatimR 1250 days, 15 hours, 23 minutes ago
Saturday, December 19, 2009 10:14:29 AM GMT Friday, December 18, 2009 10:26:48 AM GMT
A few of my favorite Visual Studio Shortcuts to make my life and yours just a bit easier! (more)
category: How To | clicked: 0 | 1 comment | | source: hatim.indexdev.net
tags: C#, Shortcuts, Visual Studio
8
Shouts

VS 2010 & .NET 4 Public Release Candidate Planned - Bharry

published 1249 days, 15 hours, 35 minutes ago posted by jantujantu 1250 days, 14 hours, 52 minutes ago
Saturday, December 19, 2009 10:14:29 AM GMT Friday, December 18, 2009 10:57:25 AM GMT
I've written extensively in the last few weeks about the feedback we've gotten from our Beta 2.  I hope you can tell we've heard your feedback, we are taking it very seriously and are committed to shipping a product that you love.  I'm grateful for all of the feedback you've given.  I'm also grateful to all of you who have been able to pick up Super-Limited Community Technology Preview (SLCTP) builds.As we look at the feedback we've gotten and the impr... (more)
category: How To | clicked: 0 | comment | | source: blogs.msdn.com
tags: Performance, Visual Studio
11
Shouts

ASP.NET MVC 2 RC and My List of Requirements - Kazi Manzur Rashid

published 1247 days, 12 hours, 4 minutes ago posted by iftekharahmedamitiftekharahmedamit 1250 days, 14 hours, 46 minutes ago
Monday, December 21, 2009 1:45:49 PM GMT Friday, December 18, 2009 11:03:47 AM GMT
As you already know ASP.NET MVC 2 hits the RC, as far as I know this is the last release before the final. There has been quite a few things that the ASP.NET MVC team has added since the v1.0. I know people says human nature is “More you get the more you want”, but the requirements that I am presenting here is not new, instead these are the enhance... (more)
category: Web Dev | clicked: 1 | comment | | source: weblogs.asp.net
tags: ASP.NET MVC, ASP.NET MVC 2.0, ASPNETMVC, ASP.NET MVC 2, MVC, ASP.NET
8
Shouts

5 Very Useful C# Attributes

published 1249 days, 15 hours, 35 minutes ago posted by HatimRHatimR 1251 days, 13 hours, 34 minutes ago
Saturday, December 19, 2009 10:14:29 AM GMT Thursday, December 17, 2009 12:15:41 PM GMT
A Look at some of the very useful C# Attributes (more)
category: How To | clicked: 0 | 1 comment | | source: hatim.indexdev.net
tags: C#, Attributes
13
Shouts

DimeCasts.Net Details for # 155 - Exploring .Net 4 Features - Tuples

published 1249 days, 15 hours, 35 minutes ago posted by derikwhittakerderikwhittaker 1251 days, 14 hours, 40 minutes ago
Saturday, December 19, 2009 10:14:29 AM GMT Thursday, December 17, 2009 11:10:01 AM GMT
Taking a look at some of the new features which are part of .Net 4. We will be focusing this episode on Tuples. Tuples allow you to return multiple values from a method with simplicity and ease by allowing you to dynamically create a return object which is typed for your specific needs. (more)
category: Screencast | clicked: 1 | 1 comment | | source: www.dimecasts.net
tags: C# 4.0 .NET, DimeCasts.net, Tuple
9
Shouts

VS2010 Modeling; Create Lifeline from Component

published 1250 days, 16 hours, 37 minutes ago posted by ClemensReijnenClemensReijnen 1251 days, 13 hours, 10 minutes ago
Friday, December 18, 2009 9:13:00 AM GMT Thursday, December 17, 2009 12:39:51 PM GMT
The lifelines you draw in a sequence diagram can represent typical instances of the components or classes in your system. You can create lifelines from types, and types from lifelines, and show the types on UML class diagrams and UML component diagrams. (more)
category: Architecture | clicked: 0 | 1 comment | | source: www.clemensreijnen.nl
tags: VS2010
7
Shouts

DotNetRocks - Show #508 - Corey Haines on Software Craftsmanship

published 1250 days, 16 hours, 37 minutes ago posted by jantujantu 1251 days, 15 hours, 50 minutes ago
Friday, December 18, 2009 9:13:00 AM GMT Thursday, December 17, 2009 9:59:29 AM GMT
Corey Haines shares his ideas on the Software Craftsmanship movement: training, apprenticeship, guidance, and collaboration. Corey Haines has been getting paid to develop software for over 13 years. He spent much of his professional career in the microsoft ecosystem, until moving into out of the... (more)
category: Podcast | clicked: 0 | comment | | source: www.dotnetrocks.com
tags: DotNetRocks, Software
11
Shouts

dnrTV - Show #162 - Sahil Malik on Developing for SharePoint 2010

published 1250 days, 16 hours, 37 minutes ago posted by jantujantu 1251 days, 15 hours, 45 minutes ago
Friday, December 18, 2009 9:13:00 AM GMT Thursday, December 17, 2009 10:04:34 AM GMT
Our good friend Sahil Malik has been poking around in early versions of SharePoint 2010 lately. In this episode, Sahil introduces us to the new interface and some of the great, and not so great, new features.Sahil Malik is a .NET author, trainer and consultant who has worked in Microsoft Technologies since the DOS days. Currently he is heavily invested in Sharepoint 2007, and the .NET framework in general... (more)
category: Screencast | clicked: 0 | 1 comment | | source: www.dnrtv.com
tags: .NET Framework, SharePoint 2007, Microsoft, dnrTV
7
Shouts

Lightspeed 3 : Testing Enhancements - Paul Mason

published 1251 days, 15 hours, 23 minutes ago posted by tivittivit 1252 days, 2 hours, 15 minutes ago
Thursday, December 17, 2009 10:26:45 AM GMT Wednesday, December 16, 2009 11:34:06 PM GMT
In this post I'm going for a bit of a diversion from the usual Protecting Your Precious Code series; and for good reason! The long awaited version 3 of the Lightspeed tool was released on Monday. Rather than go into all of the new features that it boasts (which can be found on the Mindscape blog), I'm going to take a look at a particular aspect that excites me: improved testability of entities! (more)
category: Architecture | clicked: 0 | comment | | source: blog.paul-mason.co.nz
tags: Testing, LightSpeed, Autofac
10
Shouts

Rippling Reflection Effect with Silverlight 3’s WriteableBitmap – Colin Eberhardt's Adventures in WPF

published 1250 days, 16 hours, 37 minutes ago posted by FantasticMrFishFantasticMrFish 1252 days, 11 hours, 2 minutes ago
Friday, December 18, 2009 9:13:00 AM GMT Wednesday, December 16, 2009 2:47:43 PM GMT
This blog post demonstrates how Silvelight 3’s WriteableBitmap can be used to create a UserControl that renders the content of any other Framework Element as a reflection with an animated ripple effect I was sad to hear the news earlier this year that Yahoo! was pulling the plug on GeoCities. Somewhere buried deep within GeoCities is the first web page I ever created, complete with “Under Construction” banner, animated GIFs, guestbooks, and nasty background music. Unfortunately, I have no idea what the ... (more)
category: Metro | clicked: 3 | comment | | source: www.scottlogic.co.uk
tags: writeablebitmap, Silvelight 3
8
Shouts

Setting AD Properties using the new AccountManagement API

published 1250 days, 16 hours, 37 minutes ago posted by http://teebot.myopenid.com/http://teebot.myopenid.com/ 1252 days, 10 hours, 40 minutes ago
Friday, December 18, 2009 9:13:00 AM GMT Wednesday, December 16, 2009 3:10:02 PM GMT
So I'm currently programming a lightweight utility to manage LDAP objects and I came to use the new AccountManagement API introduced in .NET 3.5 because it's way easier and more object-oriented than DirectoryServices. This new namespace, as I see it, is just provided as a friendlier way to query an LDAP server and is actually built on top of the plain DirectoryServices bits. And it shows... For example you have to dispose all objects performing a search (FindIdentity) or as Gary Caldwell puts it: ... (more)
category: Web Dev | clicked: 0 | 1 comment | | source: www.teebot.be
tags: ActiveDirectory, AccountManagement, LDAP
8
Shouts

Capture web page as image using ASP.NET by Ramani Sandeep

published 1251 days, 15 hours, 23 minutes ago posted by sandy060583sandy060583 1252 days, 13 hours, 32 minutes ago
Thursday, December 17, 2009 10:26:45 AM GMT Wednesday, December 16, 2009 12:17:29 PM GMT
<< Capture web page as image using ASP.NET by ramani sandeep >> This article describes how you can take a screenshot of a special webpage programmatically with ASP.NET. The goal of this sample is to find a way to capture a webpage’s image. The parameter is just a special url. Only by knowing this url we want to be able to take a screenshot of this webpage – a bitmap of what the user would see if he/she types this url in the browser. (more)
category: Web Dev | clicked: 14 | comment | | source: ramanisandeep.wordpress.com
9
Shouts

Mastering jQuery now available at TekPub | Encosia

published 1250 days, 16 hours, 37 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1252 days, 2 hours, 8 minutes ago
Friday, December 18, 2009 9:13:00 AM GMT Wednesday, December 16, 2009 11:41:48 PM GMT
If you haven’t been following the progress of Rob Conery and James Avery’s new venture, TekPub, you’ve been missing out on some great instructional videos. I especially like that they trend slightly Alt.NET, giving you more balanced information than is sometimes available from “official” .NET screencasts. For the past few weeks, I’ve been working with James to record a series of episodes for TekPub myself: Mastering jQuery. Mastering jQuery walks through the basics of using jQuery, the revolutionary Ja... (more)
category: Screencast | clicked: 1 | 1 comment | | source: encosia.com
tags: jQuery
12
Shouts

Sharing the goodness that is VB : Migrating an Outlook Client to .NET Framework 4 in Visual Studio 2010 - Beth Massi

published 1250 days, 16 hours, 37 minutes ago posted by jantujantu 1252 days, 12 hours, 52 minutes ago
Friday, December 18, 2009 9:13:00 AM GMT Wednesday, December 16, 2009 12:57:26 PM GMT
Early this year we built a business application for order management for Northwind Traders on the Office and SharePoint platform using Visual Studio 2008 and Office & SharePoint 2007. If you missed them:Architecture of the Northwind Office Business ApplicationOBA Part 1 - Exposing Line-of-Business DataOBA Part 2 - Building an Outlook Client against LOB DataOBA Part 3 - Storing and Reading Data in Word ... (more)
category: How To | clicked: 1 | 1 comment | | source: blogs.msdn.com
tags: OBA, Office, Visual Basic, WPF, article, VS2010, DevCenter, VSTO
10
Shouts

Multiple File Upload using JQuery « Ramani Sandeep's Blog

published 1250 days, 16 hours, 37 minutes ago posted by sandy060583sandy060583 1252 days, 13 hours, 37 minutes ago
Friday, December 18, 2009 9:13:00 AM GMT Wednesday, December 16, 2009 12:12:46 PM GMT
Multiple File Upload using JQuery Posted by Ramani Sandeep on October 28, 2009 Introduction In this article I have explained how to upload multiple files using file upload control. I have used jQuery plugin for uploading multiple files. I have also explained how to check for file type, file maximum size limit using jQuery & also using server side validation code.Download the Following FilesjQuery 1.3.2Multiple Fil... (more)
category: Web Dev | clicked: 2 | 2 comments | | source: ramanisandeep.wordpress.com