Author Archives: msarm

About msarm

Aspiring Enterprise Architect.

MS SQL – Missing Index

SELECT id.index_handle, DB_NAME(id.database_id), id.object_id, id.statement AS object_name, gs.avg_user_impact, gs.avg_total_user_cost, id.equality_columns, id.inequality_columns, id.included_columns, gs.unique_compiles, gs.user_seeks, gs.last_user_seek, gs.last_system_seek, gs.user_scans, gs.last_user_scan, gs.system_scans FROM sys.dm_db_missing_index_details AS id INNER JOIN sys.dm_db_missing_index_groups AS g ON id.index_handle = g.index_handle INNER JOIN sys.dm_db_missing_index_group_stats AS gs ON g.index_group_handle = … Continue reading

Posted in Uncategorized | Leave a comment

http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works

http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works Great artical about Bootstrap 3!

Posted in Uncategorized | Tagged | Leave a comment

An attempt was made to access a socket in a way forbidden by its access permissions XXX.XX.XXX.XX:21

Got error the below while running your application  in your local machine that tries to connect a FTP server? An attempt was made to access a socket in a way forbidden by its access permissions XXX.XX.XXX.XX:21 Solution: Turn off your … Continue reading

Posted in Uncategorized | Tagged , | Leave a comment

Activation error occured while trying to get instance of type Invoker, key “”

Solution: When you the below error, change your LifeStyle from PerWebRequest to desired style. Cause: PerWebRequest can run only in the context of a request and not outside it, which is exactly what Application_Start is. {“Looks like you forgot to register … Continue reading

Posted in Uncategorized | Tagged | Leave a comment

Secure FTP, FTP/SSL, SFTP, FTPS, FTP, SCP… What’s the difference?

Today I certainly understand, What’s are all the different FTP communication protocols & layers available and how to call them now. Thanks for Rebex product team to for their extensive documentation in simple terms. FTP – should be only used for the … Continue reading

Posted in Communical Protocol | Tagged , , , , , | Leave a comment

Web Code Syntax Highlighter

Code Syntax Highlighter SyntaxHighlighter is a fully functional self-contained code syntax highlighter developed in JavaScript. To get an idea of what SyntaxHighlighter is capable of, have a look at the demo page. SyntaxHighlighter is currently used by Apache, Aptana, Mozilla, … Continue reading

Posted in HTML/CSS, Uncategorized | Tagged | Leave a comment

A great tutorial for ASP.NET MVC 3 Internationalization

ASP.NET MVC 3 Internationalization – Part 2 (NerdDinner)

Posted in Uncategorized | Leave a comment

Some best way of providing wizard UI.

Some best way of providing wizard UI. Continue reading

Posted in Uncategorized | Leave a comment

Globalization, Internationalization and Localization in ASP.NET MVC 3, JavaScript and jQuery – Part 1 by Scott Hanselman

Scott Hanselman has provided an extensive collection of different ways of implementing Globalization, Internationalization and Localization in ASP.NET MVC3 framework. Here is the link: http://www.hanselman.com/blog/GlobalizationInternationalizationAndLocalizationInASPNETMVC3JavaScriptAndJQueryPart1.aspx

Posted in Uncategorized | Leave a comment

jQuery Fundamentals –> http://jqfundamentals.com

Contents Chapter 1: Welcome Chapter 2: JavaScript Basics Chapter 3: jQuery Basics Chapter 4: jQuery Core Chapter 5: Events Chapter 6: Effects Chapter 7: Ajax Chapter 8: Plugins Chapter 9: Performance Best Practices Chapter 10: Code Organization Chapter 11: Custom … Continue reading

Posted in Uncategorized | Leave a comment