I am developing a website in ASP.NET. I wanted to know how can I give a static path to my website on my local mahcine such that it will always be deployed on port number. For eg: in php, the path can always be http://localhost/websitename
but in ASP.NET, whenever, I debug the website for testing, it is always deployed to a new port number. This prevents me from testing my script which can only be given a static name in Greasemonkey.
In the past I deployed my apps using IIS running on IE6 and VS2008. When deploying using IIS a port number was attached to the localhost something like: [URL] then after deployment the website could be accessed from any other machine using the url. Recently VS2008, IIS and IE8 was installed. But now when I use IIS to deploy the app no port number is attached to the localhost which means that the app cannot be accessed by another machine.
This is because of the default setting being installed. There is a way to go into properties and change the default settings to make IIS deploy the app with the port number. How you change the default setting to make IIS deploy the app with the port number attached again so the app can be accessed by another machine using the apps url?
I'm looking at creating a project that has a touch screen panel on a com port and a front facing website.
I want the touch screen panel to interface with the web page, it will have two buttons (left & right) and I want those actions to "do something" on the web page.
I'm trying to work out which programming/scripting language would be best to, I could use JS but I believe that'd mean polling a c/perl/php script that is listening on the COM port considering JS has no socket capabilities.
Would it be easier if I used ASP.NET/C# - would it cause me less headaches?
I'm currently taking care of a certain local website.
The default port has been changed, and can no longer be not included in the URL due to technical reasons, so now i'm using a certain port in the end of the IP at the URL, for example
100.100.100.100/website.aspx
no longer works (which accessed 80 by default)
100.100.100.100:81/website.aspx
with the port, works.
Works, though I can't click in any link or anything and the port vanishes (new page doesn't load). Then I keep the same URL and just include the port at the end of the IP and it works again, until I click in another link inside of it.
I have access to changing each link, but I guess that would not be the right approach.
How should I procceed ?
--[EDIT]--
All URL's are already relative, and the whole issue of this question is not applicable in IE, this only happens on other browsers.
/website.aspx
What I said about changing each link would be something like
The way I quickly test the asmx file is to "View in Browser" from Visual Studio (I'm using 2005, and have IIS 6). The address shows up like this:
"http://localhost:1399/MyWebService.asmx"
where 1399 is a generated random number and can change each time I test by this process.
The books I've been reading (as well as other sources in the internet) keep referring to testing web services by typing something like this in the browser:
"http://localhost/MyFolder/MyWebService.asmx"
where "MyWebService" is the name of the web service and "MyFolder" is where that webservice is.
This "http://localhost/" with no port number testing never worked for me. Some books mention random port numbers, but most do not even mention port numbers. [URL]
Invalid URI: Invalid port specified. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.UriFormatException: Invalid URI: Invalid port specified.
I just download XAMPP, and it is running in my local computer. I added the index pages, and it works fine. However, when I copied my pages and all related information,I tried to access the page. Then, it displayed the error message below.
Note: The <httpRuntime requestValidationMode="2.0" is required because I am using a chkeditor with a textbox to create a microsoft word like effect. I remove itfrom the web config file, but then I get a similar error. This time, it was complaining about <add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
I want to send email thought asp.net page for that I need to find SMTP Host and port number below is my code
Dim EMail As New MailMessage EMail.From = New MailAddress(Emailtaxebox.Text) EMail.[To].Add(New MailAddress("sa@gmail.com")) EMail.Subject = Firstnametextbox.Text + lastnametextbox.Text + "Registerd" EMail.Body = " This is content " EMail.IsBodyHtml = True
[code]....
how to find SMTP port and host name ? I used default one its gives me error.No connection could be made because the target machine actively refused it.
How do I specify a port number for a Data Connection in the Server Explorer of Visual Studio 2008. It would use 1433 as a default but the administrators changed it for security purposes.
im creating a project.i developed a circuit for usb. i will connect this device to server's usb port. Can i access this device from a client?(not read/write file. i will send some commands to usb). Usb connection program is ready.How can i access from client? Which method will i use? web service,wcf or others.
we have a built in fax modem working on com4 without any problem but i want to access this modem and issue some AT command to it, when im trying to do this im getting error saying some other program is using this device and unnable to connect.
Does anyone know how to access this modem. or is thier a better way to access this modem.
how to run asp web site on different port in iis 5.1 server?
i have change the port no. but i can't run my web site on that port so plz. give me complete information and step to run asp web site in iis server on other than different port.
When I add a second website to my solution, it is putting it on a different port. My first website is running on port 50483, and my new website is running on port 55760. I was a little surprised, because I don't see the need to run them on different ports since they are seperate virtual directories.
I have we have deployed an ASP.NET applicatio (3.5 framework ) in IIS 6.0. It works fine in port 82 but it gives error in port80. we have installed follwoing KB969612 for IE8 issue to make it work
I've written a Generic Handler so I can access my server's COM port through javascript. I'm doing this, because I'm writing a Web Interface to an ESP-88 from BOSE, for internal use. The code must be configurable, and I added routines for both TCP/IP support and RS232. In a desktop app, the code runs fine, but in an ASP.net 4.0 App, the code crashes with the error "Access to the port 'COM2' is denied.". TCP/IP connections work, but serial is also required for us.
I have setup a new site in IIS Manager and set the Host name to the actual website address, so everytime I try to access the site via the web it takes me to the site hosted on my pc. Do I need to change the port or use a virtual directory? Running on Vista.