Software development security check list

« The C# Programming Language Version 4.0 | Do You Know About T4 (Text Template Transformation Toolkit) Code Generation In Visual Studio? » Software development security check list by Vahid 6. April 2009 17:11 Recentely i have joined a new as a technical architect. the very thing after getting to the domain was to evaluate the team technical capabalities. so i went through some their codes and found some disaster. i can say that nothing is done regarding to security. i still cannot believe what i have seen. but anyway i shared a handy document about application security with them. hope it will be helpfull for them. so i thought of sharing the same document with you. ...

April 6, 2009 · 3 min

The C# Programming Language Version 4.0

« Optimizing Silverlight pages to be search engine friendly | Software development security check list » The C# Programming Language Version 4.0 by Vahid 4. April 2009 16:02 browsing in the internet i came across a blog post about the new C# programming language spesifications (C# 4.0) and thought of sharing them with you. hope you like it. http://software.intel.com/en-us/blogs/2009/03/30/the-c-programming-language-version-40/ .Net | Technical Comments (0) Related posts Comparision between C# and JAVA here is a quick comparision between microsoft c# (.net) and java …IsNumeric() function in C#? hi, as you may know c# is missing the nice and usfull IsNumeric function which is available …Waht is new in silverlight 4.0 i have found a perfect blog post from mr. tim heuer on new features in silverlight 4.0. it’s d… ...

April 4, 2009 · 1 min

Optimizing Silverlight pages to be search engine friendly

« Free ASP.NET MVC eBook Tutorial from Scott Guthrie | The C# Programming Language Version 4.0 » Optimizing Silverlight pages to be search engine friendly by Vahid 31. March 2009 14:49 recently i was involved in development of an web application whose interface was based on Microsoft Silverlight. as Silverlight is a new technology we had so much challenges to get the job done but out of them the most important one for us was to make the application search engine friendly. so after doing some I&D on it and spending some late night hours on the issue, i got some good references and experiences which i thought of sharing them with you. This document describes some best practices for search engine optimization of Silverlight applications. These practices are designed to help developers make their Silverlight content discoverable on a search engine results page and to provide an acceptable experience for users who do not have Silverlight enabled. ...

March 31, 2009 · 12 min

Free ASP.NET MVC eBook Tutorial from Scott Guthrie

« Some cool .Net open source applicaitons | Optimizing Silverlight pages to be search engine friendly » Free ASP.NET MVC eBook Tutorial from Scott Guthrie by Vahid 18. March 2009 06:43 Scott Guthrie, Scott Hanselman, Rob Conery, and Phil Haack have release a book named ASP.NET MVC 1.0. first chapter of the book which is writen by Scott Guthrie is available to download for free. if you are new to MVC and also eager to know more about LINQ to SQL then you need to check this out. as always scott discribes the topics in practical manner so that we learn it much better. any way the chapter is available at the following link. download it, go through it and dont forget to thank scott. ...

March 18, 2009 · 2 min

Shifted to the new home.

« ASP.NET Web User Controls VS. Web Custom Controls | Some cool .Net open source applicaitons » Shifted to the new home. by Vahid 10. March 2009 17:29 finally it’s over. i had heard that moving is a difficault word to do but i had not experienced it. anyway there has been a delay in my recent posts because of this fact. but anyway it’s over. General | Personal Comments (0) ...

March 10, 2009 · 1 min

Some cool .Net open source applicaitons

« Shifted to the new home. | Free ASP.NET MVC eBook Tutorial from Scott Guthrie » Some cool .Net open source applicaitons by Vahid 10. March 2009 17:31 i have worked with some cool open source applications which are based on microsoft .net framework and i thought of sharing them with you. DotNetNuke URL: http://www.dotnetnuke.com DotNetNuke® is the most widely adopted framework for building websites and web applications on Microsoft ASP.NET. Using DotNetNuke, businesses can quickly develop and deploy interactive, dynamic websites, intranets, extranets and applications. ...

March 10, 2009 · 3 min

ASP.NET Web User Controls VS. Web Custom Controls

« Integrating PayPal Payments into E-Commerce Applications with ASP.NET | Shifted to the new home. » ASP.NET Web User Controls VS. Web Custom Controls by Vahid 3. March 2009 03:54 Web user controls are easy to make, but they can be less convenient to use in advanced scenarios. You develop Web user controls almost exactly the same way that you develop Web Forms pages. Like Web Forms, user controls can be created in the visual designer, they can be written with code separated from the HTML, and they can handle execution events. However, because Web user controls are compiled dynamically at run time they cannot be added to the Toolbox, and they are represented by a simple placeholder glyph when added to a page. This makes Web user controls harder to use if you are accustomed to full Visual Studio .NET design-time support, including the Properties window and Design view previews. Also, the only way to share the user control between applications is to put a separate copy in each application, which takes more maintenance if you make changes to the control. ...

March 3, 2009 · 3 min

Integrating PayPal Payments into E-Commerce Applications with ASP.NET

« Limitation in dbms_output.put_line in pl/sql | ASP.NET Web User Controls VS. Web Custom Controls » Integrating PayPal Payments into E-Commerce Applications with ASP.NET by Vahid March 2009 16:24 Check out the following article about Integrating PayPal Payments into ASP.NET E-Commerce Applications. this a very descriptive, useful article. http://www.west-wind.com/presentations/PayPalIntegration/PayPalIntegration.asp The process of integrating a PayPal payment involves several pages and HTTP POST backs. .Net | Learning resource | Technical Comments (0) ...

March 1, 2009 · 1 min

Limitation in dbms_output.put_line in pl/sql

« Customizing Entity Framework Classes in VS 2010 | Integrating PayPal Payments into E-Commerce Applications with ASP.NET » Limitation in dbms_output.put_line in pl/sql by Vahid 18. February 2009 10:32 Today I was testing a function in pl/sql using pl/sql developer. In the function we are contenting so many strings that the leng of the final string would go more than 4000. As usual I was trying to use dbms_output.put_line to debug the function and make sure the end result is ok. But at the end of the function when I was trying to print the final string using this function I was not getting the expected result. the string was being truncated. First I thought there is a problem with varchar2(4000) data type which I had declared for my variable. So I changed the data type to LONG which can hold unto 2GB of data. But still the same issue was there.Spending sometimes on the issue I thought there may be some limitation to the put_line function. So I created a temporary table with a single clob column and inserted the final string into that column instead of printing to out window. Surprisingly it worked properly and I was able to see the whole string from the column. Doing some R&D on this I came to know that dbms_output.put_line() function has just a buffer of 2000 characters and it will only print 2000 chars. I was not able to find out any way to increase this buffer size but once I find it, I’ll write about it. ...

February 18, 2009 · 2 min

Customizing Entity Framework Classes in VS 2010

« Entity Framework learning resouce | Limitation in dbms_output.put_line in pl/sql » Customizing Entity Framework Classes in VS 2010 by Vahid 17. February 2009 15:32 need to know about new cool features in visual studio 2010? check this link which describes new features for entity framwork in vs 2010 http://blogs.msdn.com/efdesign/archive/2009/01/22/customizing-entity-classes-with-t4.aspx .Net | Learning resource | Technical Comments (0) Related posts Entity Framework learning resouce browsing internet i found this document about ado.net entity framework which comes with microsoft …Update Single Column In Entity FrameworkI was working with Entity Framework and I needed to update a single column of a row in the database….Perfect reference to get started with EntityFramework 4.1Just found these set of post in the MSDN site for getting started with EntityFramework 4.1. if you a… ...

February 17, 2009 · 1 min