Search Results

3
votes
1answer
113 views

What is the difference between these two methods of accessing the SharePoint model?

Out of the several ways of accessing the SharePoint model of a SharePoint Services 3.0 site from an ASP.NET application, two seem to be very similar: SPWeb site = SPControl.G …
0
votes

Access denied when creating a virtual directory via Web Deployment Project

I have seen this occur when the IIS server wasn't running on the default port. I'd recommend checking IIS to see if it's running on port 80 as a step to diagnose your issue further. …
0
votes

ASP.NET trusted DB connection to other server works in Casini, not in IIS

Sounds like you need to configure the database server to provide access to the database you're trying to connect to. Assuming SQL Server, log into SQL Server Enterprise Manager and under Se …
1
vote

Is there a way to keep files in App_Data from overwriting newer files when publishing?

In Visual Studio 2005, I see a checkbox labeled "Include files from the App_Data folder", which defaults to checked. Have you tried publishing with that checkbox unchecked? EDIT: …
2
votes

ASP.NET and Sessions - New Browser Instance versus New Browser Window

By default, ASP.NET tracks sessions through cookies. A new IE instance does not have the session cookie, resulting in a new session. However, using File -> New Window from an existing IE window wil …
0
votes

Simple role authentication in asp.net

Note that to use the role provider model you do not have to use a database and a schema, there are simpler options. You might be interested in using the Authorization Manager (a free download from …
8
votes

ASP.NET Session Timeout Testing

Decrease the timeout The easiest and most non-intrusive way to test this is probably to just decrease the timeout to a fairly small number, such as 3 or 5 minutes. This way …
0
votes

What can be causing IIS to receive the HTTP verb “2GET”

Very odd indeed. Is this only occurring from one computer? Are these requests coming directly from the user's computer, via a proxy, or perhaps via ISA Server? Is it …
-1
votes

ASP.NET Querystring being removed on first load

A few things for you to try: You could watch the HTTP traffic to see what is happening, using a utility such as …
1
vote

IIS 7 websites share same Application Pool

One way I've seen to share session state across different ASP.NET applications is to use one of the other options for storing session state information. Unfortunately I don't have access to IIS 7 a …