Hi -
Who else had received this error during Windows update? I'm running Vista ultimate. There are a couple of posts on google, but no solutions yet.
View Complete Post
All of the sudden I'm getting the following error on my local web server (Win7 64bit, IIS 7.5). I've uninstalled & reinstalled IIS locally and it didn't fix it. IIS is set to start up automatically and I can see that the service has been successfully started. Upon a fresh reboot if I go into IIS and click on start website I get the following error:
"The process cannot access the file because it is being used by another process. (Exception from HRESULT: 0x80070020"
If I try to start debugging on my local website project I get the following error:
"Unable to start debugging on the web server. The underlying connection was closed. The connection was closed unexpectedly."
Any ideas on what I can try? I've been doing research on the issue and Microsoft suggest making sure no other service is listening on the same ports. I've verified that this isn't the issue.
Hi.
We had a website deployed on IIS server remotely say www.liveserver.com.
We recently decided to make a copy of the website internal to the organisation so we brought a server and copied all the code from live server and configured it and say it is http//archives-testserver.com
Everything seems to work fine but while navigating and clicking on certain module links within http//archives-testserver.com......the domain name is getting rewritten to www.liveserver.com and user is made to navigate on the live site. I wonder where this configuration is with in IIS...
I looked under properties under website identification and everything is referring it as http://arhives-testserver.com. also thr is a file called securityRedirect.inc and ifor handling errors and all the references have been changed and couldn't find anything in web.config.
I would really appreciate if anyone can guide in right direction, where else to look for probable reference to live site?
I'm trying to figure out how I can get around an error I get when multiple users are accessing different my site. I'm getting an error:
there is already an open datareader associated with this connection which must be closed first
It's not the same query everytime but I recently triggered it on this statement:
Dim adapterSavedState As New SQLDataAdapter("SELECT SavedStateContactView, SavedStatePropertyView, SavedStateTransView, SavedStateCompanyView FROM WebusersProfiles WHERE ContactID = '" & Session("ContactID") & "'", myConnection) Dim dtSavedState As New DataTable() adapterSavedState.Fill(dtSavedState) Dim rowSavedState As DataRow For Each rowSavedState In dtSavedState.Rows If Request.QueryString("View") = "Contact" Then SavedState = rowSavedState("SavedStateContactView").ToString() Else If Request.QueryString("View") = "Property" Then SavedState = rowSavedState("SavedStatePropertyView").ToString() Else If Request.QueryString("View") = "Trans" Then SavedState = rowSavedState("SavedStateTransView").ToString() Else If Request.QueryString("View") = "Company" Then SavedState = rowSavedState("SavedStateCompanyView").ToString() End If Next rowSavedState
I define my connection in my basepage
Public Dim MyConnection As SqlConnection Public Shared Dim strSite As String = "dev" Protected Overrides Sub OnLoad(ByVal e As System.EventArgs) myConnection = New SqlConnection("server=xxxx;database=xxxxx;User ID=xxxxx;Password=xxxxx;")
Where is my issue and how can I overcome it? This is a .net 1.1 site so MARS I know is not available...
Hello, I would like to know how to populate a drop down listbox (dlName) from a web service with last and first name i.e. (LastName, FirstName). My Web Service XML that I am requesting is as follows:
<?xml version="1.0" encoding="utf-16"?>
<FindPartnerContactsAction xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<CompanyName>training</CompanyName>
<IntegrationLoginId>cscw</IntegrationLoginId>
<IntegrationPassword>cscw10</IntegrationPassword>
<!-- Search conditions Available fields are:
- ContactRecID (number)
- FirstName (text)
- LastName (text)
- CompanyName (text)
- Phone (text)
- Email (text)
- Type (text)
- Relationship (text)
- DefaultFlag (boolean)
- AddressLine1 (text)
- AddressLine2 (text)
- City (text)
- State (text)
- Zip (text)
- Country (text)
-->
<Limit>10</Limit>
</FindPartnerContactsAction>
The following is the WebService Response XML.
<MemberID>zadmin</MemberID>
<IntegrationLoginId>mylogin</IntegrationLoginId>
<IntegrationPassword>mypassword</IntegrationPassword>
<Limit>1</Limit>
<Skip xsi:nil="true" />
<Contacts>
<Contact>
<ContactRecID>77</ContactRecID>
<FirstName>Arnie</FirstName>
<LastName>Bellini</LastName>
<CompanyName>Your Company</CompanyName>
<Type />
<DefaultFlag>true</DefaultFlag>
</Contact>
</Contacts>
My code that I am using to populate the drop down list box is as follows which needs correcting:
public void btnSubmit_Click(object sender, EventArgs e)
{
const string contactCompanyId = "3esi";
var xmlRequest = new XElement("FindPartnerContactsAction", new XAttribute(XNamespace.Xmlns + "xsi", "http://www.w3.org/2001/XMLSchema-instance"), new XAttribute(XNamespa
Hi
I need to know if a web application deployed in a 64-bit server runs as a WOW64 process or a 64-bit process if the web application's pages are compiled as PE 32/x86 ?
I mean I have read a lot about normal console applications or executables with PE 32/x86 run as WOW64 on 64-bit servers. But what about web applications( all i can compile is the pages which are dlls)? The only process I can think of is w3wp.exe for web apps. Please explain. I am confused.
Thanks in advance
Vineeth
I'm doing an application which has already contains a master page named Master.master. And all related web forms(Webpage) are running well. But I create another master page in same application named Profile.master for some other web form(Webpage). But this time some of the related pages are running a blank page and some are generating an error that is:-
is not allowed here because it does not extend class 'System.Web.UI.Page'.
please help me to rectify this error.
Vishal Purohit
Hi All,
i have a program in vb.net..i use the webrequest to post the data to another page (http://localpost/posReceived.aspx), and use the webResponse to get the back the response from the remote page.
When i run this program, it returned error "The remote server returned an error: (403) Forbidden.". I have no idea on this. Coz my aspx page and posReceived.aspx are placed in the same server and same directory. I supposed it should be worked without any security concerns.
Can anyone help me to solve it. Thanks a lot!