NavaidAkhtar

Stories kicked by NavaidAkhtar

Working with ASP.Net Webservice on Vista / Windows Server 2008 (IIS 7)(weblogs.asp.net)

submitted by NavaidAkhtarNavaidAkhtar(50) 3 years, 1 month ago

Working with Web services on Window 2003 Server (IIS 6) doesn't occured any effects when moving from windows XP. Hmm, But on moving to windows vista / windows 2008 Server, I was quite confused with the big change that Microsoft have done for existing ASP.Net applications. read more...

add a comment |category: |Views: 32

tags: another

New ASP.NET Charting Control(weblogs.asp.net)

submitted by craigtpcraigtp(683) 3 years, 6 months ago

From ScottGu's blog. Brand new, Free, ASP.NET 3.5 chart control. It looks very nice! read more...

1 comment |category: |Views: 890

tags: another

Unity - Dependency Injection and Inversion of Control Container(dotnethitman.spaces.live.com)

submitted by misbaharefinmisbaharefin(845) 3 years, 8 months ago

Dependency injection is a programming technique to reduce component coupling. Dependency injection is also commonly known as “inversion of control” or IoC or sometimes as The Hollywood Principle - "Don’t call us, we’ll call you”. The goal of dependency injection is to separate the concerns of how a dependency is obtained from the core concerns of a boundary. This improves reusability by enabling components to be supplied with dependencies which may vary depending on context. read more...

add a comment |category: |Views: 368

tags: another

Table-Value Parameters in SQL Server 2005(dotnethitman.spaces.live.com)

submitted by misbaharefinmisbaharefin(845) 3 years, 9 months ago

In pre-SQL Server 2005 in order to pass in a set of values one had to create a temporary table, populate it with data using INSERT, and then just use it in the procedure or function since they are created for the current session and are available to all processes in that session. I did a blog on how to pass in Table-Value Parameters in SQL Server 2008 but what if we have a need to pass in multiple rows of data to a T-SQL statement, or a routine such as stored procedure or function in SQL Server 2005? read more...

add a comment |category: |Views: 224

tags: another

Maintain Browser History with AJAX (weblogs.asp.net)

submitted by hwaheedhwaheed(245) 3 years, 9 months ago

The article aims at understanding History Points in AJAX that allow the browser to keep track of AJAX steps and therefore move through them using forward and backward buttons. read more...

add a comment |category: |Views: 122

tags: another

Converting Data Table / Dataset Into JSON String(weblogs.asp.net)

submitted by NavaidAkhtarNavaidAkhtar(50) 3 years, 10 months ago

JSON (Java Script Object Notation), is a light weight, easily understandable to read and write string. It is also easly parseable by machine. It is introduced on two structues A collection (key/value pair) And ordered list of values. read more...

add a comment |category: |Views: 981

tags: another

ASP.Net Compilation and Merge Tool (Part 2 of 2) (weblogs.asp.net)

submitted by NavaidAkhtarNavaidAkhtar(50) 3 years, 10 months ago

ASP NET Merge tool allows user to manage and combine assemblies that are created using ASP NET Compilation tool. It works only on assemblies that have been created by using ASP.NET 2.0 or higher.This tool creates one assembly for each folder in target application or it creates each assembly for each file.This tool gives you additional functionality for management and deployment. read more...

add a comment |category: |Views: 30

tags: another

ASP.Net Compilation and Merge Tool (Part 1 of 2) (weblogs.asp.net)

submitted by NavaidAkhtarNavaidAkhtar(50) 3 years, 10 months ago

ASP.NET Compilation tool is used to compile an ASP.NET Web application either in same machine or to deploy on a target machine such as a production server. It helps application performance because end users do not encounter a delay on the first request to the application while the application is compiled on backend. read more...

add a comment |category: |Views: 11

tags: another

How to use Javascript using Server-side scripting (weblogs.asp.net)

submitted by NavaidAkhtarNavaidAkhtar(50) 3 years, 10 months ago

Hi. This article is interesting for those who loves to use javascript, but with little server postbacks. I had some times issues related to validation or client redirection or other sorts. So i got this solution and i would like to share it with you. read more...

add a comment |category: |Views: 19

tags: another