c# - Error: Port 1033 in use? -
i has last executed asp.net program yesterday. when today again opened run it, showed me microsoft visual studio error port 1033 in use.
how can solve error? should change make port available?
my web.config file is:
<?xml version="1.0"?> <!-- more information on how configure asp.net application, please visit http://go.microsoft.com/fwlink/?linkid=169433 --> <configuration> <connectionstrings> <add name="constr" connectionstring="data source=.;integrated security=sspi;initial catalog=sshopping"/> </connectionstrings> <system.web> <compilation debug="true" targetframework="4.5"> <assemblies> <add assembly="system.web.extensions.design, version=4.0.0.0, culture=neutral, publickeytoken=31bf3856ad364e35"/> <add assembly="system.design, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a"/> <add assembly="system.windows.forms, version=4.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089"/> </assemblies> </compilation> <httpruntime targetframework="4.5"/> </system.web> </configuration>
please me solve error.
might other service using port 1033
. try setting other random portno. , follow these steps.
- in properties pane, click down-arrow beside use dynamic ports , select false dropdown list. enable editing of port number property.
- in properties pane, click text box beside port number , type in port number. click outside of properties pane.this saves property settings.
- each time run file-system web site within visual web developer, asp.net development server listen on specified port.
for more clarity check these links
Comments
Post a Comment