Tagged Questions

2
votes
8answers
130 views

C++/CLI : Advantages over C#

Is there any major advantage of managed C++/CLI over C#. Definitely not the syntax I suppose as the following code in C++/CLI is real ugly, C++/CLI code: [Out]List<SomeObject^>^% someVariable …
0
votes
7answers
162 views

What is the advantages an interpreted language has over a compiled language? [closed]

Possible Duplicate: What’s with the love of dynamic Languages I have already read this, but I do not get it. What use is making your own interpreter. Also, it says platform …
3
votes
5answers
241 views

What are the advantages of using Prolog over other languages?

Every language that is being used is being used for its advantages, generally. What are the advantages of Prolog? What are the general situations/ category of problems where one can use Prolog more …
0
votes
3answers
109 views

Advantage of data type id vs NSString in Objective C?

This code... NSString * s = [[NSString alloc] initWithString:@"Hello, World"]; s = s.lowercaseString; NSLog(@"%@", s); ...allows the use of dot notation but is strongly typed. This code... id s = …
5
votes
5answers
720 views

Advantages and disadvantages of using Ajax update panels in ASP.NET application

What are the advantages and disadvantages of using Ajax update panels in ASP.NET application. Is there any alternatives available to avoid the use of Ajax update panel?
9
votes
8answers
1k views

ASP.NET Masters: What are the advantages / disadvantages of using Session variables?

I've done a search on this subject already, and have found the same data over and over-- a review of the three different types of sessions. (InProc, Sql, StateServer) However, my question is of a …
0
votes
2answers
162 views

Am I stupid for not using custom packages in Flex 3 (flash)?

When I create a new class file in Flex 3 it warns me that I should not use the default package. I personally never used packages before, but think that packages won't make things any more easier …
2
votes
5answers
626 views

Advantages and disadvantages between sql 2005 and sql 2008?

Exact duplicate: Advantages of MS SQL Server 2008 over MS SQL Server 2005? i am a sql developer and i use sql 2005. i want to now to pass to 2008 but i am a little affraid. can anyone gives me …
1
vote
1answer
49 views

Advantage 8.1 vs 7.1

I am in the process of upgrading a few in-house applications from ADS7.1 to 8.1. I was told a while back that there are changes in return values of the avg() function as well as some division …
0
votes
1answer
62 views

Do I need to change anything programmatically to leverage the integrated pipeline in IIS7?

Do I need to change anything programmatically to leverage the integrated pipeline in IIS7? If so, what's the best way to degrade gracefully and remain functional on IIS6? Thanks!