| Mahesh 的个人资料▒▒╰☆╮Mahesh kumar R {Yes...照片日志列表 | 帮助 |
▒▒╰☆╮Mahesh kumar R {Yes2Dotnet} ╰☆╮▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒╰☆╮ÇÿbérìäFréåK ╰☆╮╰☆╮☆MS Blogstar of the year 2006 ☆☆☆☆☆ |
||||||||||||||||
MS App Architecture Guide, 2nd Edition - downloadMicrosoft Application Architecture Guide, 2nd Edition - free download ** The guide helps you to:
File : Application Architecture Guide v2.pdf & Date Published: 11/20/2009 Download here - http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=ce40e4e1-9838-4c89-a197-a373b2a60df2 How to hide your personal folders easily !!This is very old technic, but comes handy when you share your personal/office systems in short notice. Try this in cmd prompt, To hide, e:/>attrib +h +s +r <foldername> To revert e:/>attrib -h -s -r <foldername> Note : i) it will be still hidden even if you set 'show all hidden files' under folder options and also using advanced searches too. But you've to keep note of your folder name to revert back ;) patterns & practices -Application Architecture BookContents at a Glance Chapters
via - http://blogs.msdn.com/jmeier/archive/2009/11/05/now-available-patterns-practices-application-architecture-book.aspx WPF Binding CheatSheet version 1.1WPF Binding CheatSheet version 1.1 download here @ http://www.nbdtech.com/Free/WpfBinding.pdf (via) Rakesh's tweets I was there @ David's Azure World Tour 2009, Blr
Disk2vhd v1.0 - Oct 7, 2009 ( VHD creater )Windows Azure- Instructor led training on 28'th OctoberInvitations to the 3 hour virtual ILT on 28'th october- 10.00 AM - 1.00 PM - http://www.qsitglobal.com/qsitmailers/october_2009/azure/azure_form.htm#fillform Visual Studio 2010 and .NET Framework 4 Training KitVisual Studio 2010 and .NET Framework 4 Training Kit The Visual Studio 2010 and .NET Framework 4 Training Kit includes presentations, hands-on labs, and demos. This content is designed to help you learn how to utilize the Visual Studio 2010 features and a variety of framework technologies including:C# 4.0 Visual Basic 10 F# Parallel Extensions Windows Communication Foundation Windows Workflow Windows Presentation Foundation ASP.NET 4 Entity Framework ADO.NET Data Services Managed Extensibility Framework Visual Studio Team System This version of the Training Kit works with Visual Studio 2010 Beta 1 and .NET Framework 4 Beta 1 Operation must use an updateable queryCloud Computing delivery and deployment models3 Delivery models of Cloud Computing, 1) SaaS ->Cloud Software as a Service->Customers rent software hosted by the vendor 2) PaaS ->Cloud Platform as a Service->Customers rent infra and programming tools hosted by the vendor to create their own applications 3) IaaS ->Cloud Infrastructure as a Service->Customers rent processing, storage,networking and other fundamental computing resources for all purposes 4 Possible deployment models: 1) Private cloud-> Owned or leased by a single organization & operated solely for that organization. 2) Public cloud -> Owned by an organization selling cloud services to the general public or to a large industry group. 3) Community cloud -> Shared by several organizations and supports a specific community that has shared concerns 4) Hybrid cloud -> Composition of two or more clouds (internal, community, or public) Virtual Labs - Try Azure ServicesTest drive Azure Services Platform solutions in a virtual lab and see how you can quickly and easily develop applications running in the cloud by using your existing skills with the Microsoft Visual Studio development environment and the Microsoft .NET Framework. Virtual labs are simple, with no complex setup or installation required.http://msdn.microsoft.com/hi-in/dd540819(en-us).aspx Want to see something interesting in SilverLight ?Really amazed to see this link - http://www.windows4all.com [ a super cool! Silverlight Web-Based Windows OS !!] kudos to the brain behind this site & scott for his tweet. All about Model View ViewModel (MVVM) ? - Points to Note* Its an architectural pattern used in software engineering that originated from Microsoft * targeted at modern UI development platforms (WPF and SL) * View-Model is responsible for exposing the data objects from the Model in such a way that those objects are easily managed and consumed. In this respect, the View-Model is more Model than View, and handles most if not all of the View’s display logic * Pattern is designed to support WPF and Silverlight Elements of the MVVM pattern include: (1) Model as in the classic MVC pattern, the model refers to the data access layer representing the real state content. (2) View as in the classic MVC pattern, the view refers to all elements displayed by the GUI such as buttons, windows, graphics, and other controls. (3) ViewModel: the ViewModel is a “Model of the View” meaning it is an abstraction of the View that also serves in data binding between the View and the Model. It could be seen as a specialized aspect of what would be a Controller (in the MVC pattern) that acts as a data binder/converter that changes Model information into View information and passes commands from the View into the Model. The ViewModel exposes public properties, commands, and abstractions. The ViewModel has been likened to a conceptual state of the data as opposed to the real state of the data in the Model. src(wikipedia) Azure™ Developer Challenge - Contest entries & ResultThese days I'm glued very much to cloud computing via twitter(#surprisedcloud), janakiramm.net/blog/, RSS updates, infosys microsoft blog etc. In addition to this, here is the much awaited contest result out for new CloudApp() - Read from here - http://www.newcloudapp.com/ Personally I like MyImpulsive & radio, infacted voted for this two. Interesting part is, my current employer-sapient also appeared for this - http://sapientlabs.cloudapp.net/ Cloud computing is really rocks and looking forward ! From TechEd 2009 Notes : C# 3.0 Feature explainedAuto-implemented property is the new feature in C# 3.0 and useful one. Here is the code which i tried to explain in easy way. Read more from MSDN here Change is the only constant !! - Back to blogging Yeah, I've changed my job. Left Sobha Renaissance Information Tech, after spending 3 Years 8 months of fruitful experience and joined with Sapient this Monday. Its been two months since there was no posting in my blog due to various reasons. I would like to break the ice and come back to bloggin. wish me a good luck and lets go ahead ! Why I should not use DataTable.Select() for larger set of recordsReason : Performance degrade How : Select() takes arbitary criteria, returns an array of DataRows (Row Collection). It has to walk thru the entire table and compare every record to the criteria that you passed in. It is considered worst method to use for large set of records. So here is the alternative, 1) DataTable.Rows.Find if you look for single row... Src : Scaling ADO.NET DataTables and Best Practices for Using ADO.NET2) Indexing the DataTable..but need to build Index in .NET Code as well. 3) LINQ - recommended 4) Morphing the DataTable into a generic collection like Dictionary(Of String, String) to hold the same data as the DataTable. Cannot load file..another DLL Hell I got Visual Web Dev Express 2008 for my day job ( "Could not load file or assembly 'Microsoft.SqlServer.Management.Sdk.Sfc, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' or one of its dependencies. The system cannot find the file specified." The quick fix is, download the below 3 setup and install to get rid of this error. Microsoft SQL Server System CLR Types Microsoft SQL Server 2008 Management Objects Microsoft SQL Server 2008 Native Client Download -http://www.microsoft.com/downloads/details.aspx?FamilyId=C6C3E9EF-BA29-4A43-8D69-A2BED18FE73C&displaylang=en#filelist Microsoft TechEd 2009 Detail
Problem Statement for MS Architect Contest. India Election Pedia – A DIGITAL MESH Functions and Features of the system shall include the following:
Achieved MCTS in Web !!Yes, this monday I've cleared 70-528 following 70-536 to get MCTS in Web Applications. I was planning this exam for the past 2 years, but every time i get some excuse. But this time I've decided to achieve it without delay. I manage to get decent score around 820 and 875 ( 700 is the pass mark, max 1000). I gave my exam in NIIT Prometric center, Residency road branch. { Note : NIIT dont have parking, Carry 2 original ID proof along with xerox copy } Thanks to kalyan for his blog on 10% gift voucher. Follow here to get one - http://kaliyans.spaces.live.com/blog/cns!96AD32C97E4483A0!712.entry On total I saved 10$ (5$ for each exam). Really matters during this testing time... Not able to install Windows XP in Vista's Pre-loaded machine !! Friend of mine bought a new laptop with Vista Ultimate by default(OEM Version). He had a problem in activation and not able to log in Read more from Wikipedia source and MS error report Microsoft Expression Web SuperPreview - for IE Web TestThis is for Web developers (ASP.NET) who work for cross browser support An easy solution for this is to identify browser type then bunch of code for each browser compatible DOM manipulation(Javascript). Its really time consuming and takes time to test it. This kind of approach boggles me and am not confident at all. But I highly recommend to take care of cross browser support from the prototype development stage itself. Here is the news from MS regarding Web SuperPreview for IE (its a visual debugging tool that makes it easier to migrate our Web sites from IE 6 to IE 7 or 8 ), but it would be better if they extend this support to test other browsers also..Currently few of my applications are working smoothly in IE 6 and above..but not sure about IE 8. I'll post about the pros and cons after checking this too... jQuery to my project !!Currently i'm involved in designing a complete web application all alone and learning a lot these days. Doing a lot of POC and observing the best available things to the current Project. In this, jQuery is my latest crush,i knew JQuery for the past one year after Scott announcement but i never had a change to work for client project. Here is my first POC for no bie's.. jQuery is a fast, lightweight JS
library that is CSS3 compliant and supports many browsers. The jQuery
framework is extensible and very nicely handles DOM manipulations, CSS,
AJAX, Events and Animations. Complete list of download available here.JQuery is not a JS replacement, but its a library written using JavaScript. 1) Download from here 2) Add as reference. In aspx file.. $(document).ready(function() { // Add the page method call as an onclick handler for the div. $("#buttonn").click(function() { $.ajax({ type: "POST", url: "MyJQuery.aspx/Samplemethod", data: "{}", contentType: "application/json; charset=utf-8", dataType: "json", success: function(msg) { $("#Mydiv").text(msg.d); } }); }); }); <body> <form id="form1" runat="server"> <div id="Mydiv"> </div> <input id="Text1" type="text" /> <input id="buttonn" type="button" value="button" /> </form> </body> </html> In Code behind.. [System.Web.Services.WebMethod] public static string Samplemethod() { return DateTime.Now.ToString(); } You could see, the page gets the latest date and time easily... |
|
|||||||||||||||
|
|