No worries. :-D
Upcoming events: * Glasgow: Mock Objects, SQL Server CLR Integration, Reporting Services, db4o, Dependency Injection with Spring ... * Reading: Developer Day 5 Ready to Give up - Your help will be much appreciated. My website
response.redirect(""); In this method the redirection to the page is sent to the browser. From the browser it is redirected to the page. i.e Process goes like this Server -> client(browser) -> Server -> client(browser) set redirect the page Page is loaded redirect command to the browser server.transfer(""); In this method the redirection to the page is done in server, so the redirect page is sent to the browser i.e Process goes like this Server -> Server -> Client(browser) Transfer transfer Page is loaded the page page is sent Note:- So response.redirect("") does call to client and then to server for loading , server.transfer("") does not call to client, but transfer in the server and load that page to the client
i did that too but every line is executing very well. At the end of lasat curly brace its giving error. i thought there is no error in the program. but i think the error i am getting is general error due to some settings. if anyone aware of this type of error then they may solve.
The .NET Framework is Microsoft's implementation of the Common Language Infrastructure specifications. Mono is a Linux implementation of the CLI, that also models itself after the .NET Framework. Other than that, I don't know of any other implementations. Though anyone is free to implement their version of the CLI on any platform they choose.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007
We can deploy vs.net c# application on mono framework in linux. But it is quite hard I can deploy some simple c# windows application in linux with mono. go to http://www.mono-project.com ashis
Shouldn't it be: ConfigurationManager.ConnectionStrings["your_con_string"].ToString() Assuming this is for 2.0 and you've added the proper imports/using statement. e.g. (C#) using System.Configuration; (VB) Imports System.Configuration Hope this helps :->
My Personal Site
Go to IIS(type inetmgr in Run) Go to the virtual directory you have created. Right click on the Virtual directory -> properties -> ASP.NET tab -> Change the Asp.net Version to 2.0.50727 Then Refresh virtual directory