Click here to Skip to main content
15,887,464 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am a beginner in .NET

I am doing a simple project in ASP .NET.

I have all the codings and database in my system but I need to run my ASP file in a client machine by using the URL path.

I tried it but I got with error.
I have installed IIS, sql & .NET framework in the client system, I still get error.

Can anybody help me to run my ASP file in a client machine please.


Thanks in advance...

SANS
Posted
Updated 28-Oct-10 23:06pm
v2
Comments
Sunasara Imdadhusen 28-Oct-10 9:30am    
Do you publish your application?
LittleYellowBird 28-Oct-10 9:37am    
Hi, I don't work in ASP.NET so I can't help, but may I suggest that you explain what errors you get. It is hard to help with any problem without all the information. :)
Sunasara Imdadhusen 28-Oct-10 9:42am    
Do you want to access your application (that you have been created on your machine)from another machine using interanet?
Mohd Wasif 29-Oct-10 4:56am    
How did u do it and what error is arising?
Dalek Dave 29-Oct-10 5:06am    
Edited for Grammar and Readability.

ASP.Net is a server-side technology. That means that the user has to browse with a web browser to your site. I think you need to go back and learn what asp.net is for.


BTW, you neglected to include the error you're seeing, so the best anyone here can do to help you is take a wild-assed guess at what your real issue is.
 
Share this answer
 
v2
There are two ways you can do this:

(1) Host your ASP.NET pages on a publicly accessible web-server. Or if your end user is on the same network, host it via a network accessible IP address.

(2) If you do not want to publicly host your web-app, you need to install IIS on his machine and then deploy the entire website on his machine, so he can access and run it locally. If your site uses a backend DB, then the end user will need the DB locally too, so as you can see this is a fair bit more work that the other approach.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900