Friday, October 22, 2010

Linkedin Change Password Issue

I am using LinkedIn from past 3-4 years a very good site to connect to professionals.

But here is a Scenario i am using LinkedIn from two places

(1) Office

(2) At Home

At both the places I never logged off from LinkedIn I use to just close the browser so that next time I will start browser and go to LinkedIn site and I don’t have to logged on again and again.

Two days back i have changed my password from the home computer when I went to office and started the site it is opening my account directly without asking me the new password.

It looks there is some problem in Cookies stored on my computer it has not checked whether the password is changed or not.

In my view who so ever done work on this should check the password too if it got changed.

Monday, October 11, 2010

RIA Tool LightSwitch


Visual Studio LightSwitch, it is a VS product tailored for easy creation of Line of Business applications.

* Light switch is a good product for small developments.
* With LightSwitch you can create custom applications for the way you do business. Keep your technology and business options open, while building a practical yet scalable application that matches your current needs now and in the future. The pre-built templates and components in LightSwitch are fully extensible, so you can get the specific functionality your application demands.
* Its Easy to handle as well deploy
* Get Rid of cumbersome installation processes.

* Basically you can create RIA Application though it and very fast & easy development tool.

Friday, October 8, 2010

Some Tips to work with Visual Studio

Couple of weeks back i was facing a problem as i have developed a independent Application which i need to deploy in a sub folder
and run it. It is Windows based web application which need to be deployed in a subfolder. Now the problem start with Web.config file
it was taking the root Web.Config but as i created an indepenedent applicaiton which has things related to the application in web.config i tried to search on google for does not find anything related to it then i tried to see resources
related to Web.Config on Micorsoft and found that it is possible.

How

This is how you can run your application in a sub folder and use its own web.config file too on IIS Server.

I have used the given code in Main Site's Web.Config file

<location path="." inheritInChildApplications="false">
<system.web></system.web></location>

There was another problem related to App_code folder which has some classes which i have defined for the project.

Server Error in '/' Application.

Compilation Error

Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

Compiler Error Message: CS0433: The type 'SiteSettings' exists in both 'c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\4af4b811\75e627a5\App_Code.i77upflw.dll' and 'c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\4af4b811\75e627a5\assembly\dl3\3e7d3859\c2b075c9_a13ecb01\?????????.DLL'

Source Error:

I tried to find the solution for it and it was prity simple what i need to do is the put all my app_code folder files in App_LocalResources this folder when you right click the Visual Studio UI automatically ask if you want to create folder like this.