Search Results

2
votes
2answers
2k views

SharePoint stream file for preview

I am looking to stream a file housed in a SharePoint 2003 document library down to the browser. Basically the idea is to open the file as a stream and then to "write" the file stream to the repons …
3
votes
3answers
987 views

MSSQL Server 2005 Encryption, asp.net and stored procedures

I need to write a web application using MSSQL Server 2005, asp.net, and ado.net. Much of the user data stored in this application must be encrypted (read HIPAA). In the past for projects t …
0
votes
2answers
475 views

ASP.NET session and storing objects that use COM interop

I'm working on an asp.net web site. We have to use com interop to interact with legacy vb6 activex components. The components in many cases rely on receiving a context object (which is itself a v …
1
vote

How do I get the current location of an iframe?

Ok, so in this application, there is an iframe in which the user is supplied with links or some capacity that allows that iframe to browse to some external site. You are then looking to capture th …
2
votes

Exception in Web Service locks DLL and prevents publishing. Workaround?

Using the IISReset command line tool will only restart IIS on the local machine, not on a remote server to which you are publishing. Assuming that you are publishing to a Windows 2003 serve …
2
votes

Referencing Embedded resources from other resources in c#

I'd suggest that you emit the web resources as a dynamic javascript associative array. Server side code: StringBuilder script = new StringBuilder(); script.Append("var imgRe …
2
votes

Referencing Embedded resources from other resources in c#

I concur with Jason's assessment of the initial solution I proposed, it can definitely be improved. My solution represents an older school javascript mentality (read, pre the emergence of ajax and …
2
votes

ASP Server variable not working on local IIS

What authentication do you have enabled in IIS? Anonmyous, Basic, Digest, Integrated Windows? Sounds to me like anonymous access is enabled/allowed, and nothing else. This would means that LOGON …
0
votes

SQL Server 2005 has problems connecting to a website running on the same server.

Based on the error looks like the code is attempting to connect using named pipes, rather than TCPIP. You may actually need to specifically indicate in your connection string that the sql provider …
0
votes

SQL Server 2005 has problems connecting to a website running on the same server.

Did you try specifying the instance name in the connection string? Apparently sql server express, in particular, is finicky about having the instance name. I've also started to poke arou …
1
vote

SQL Server 2005 has problems connecting to a website running on the same server.

The only thing that I'm suspicious on is that the server has two Database engines: SERVER and server\sqlexpress I think this is the source of the problem. Whic …
5
votes

One Update Panel vs. Multiple Update Panels

I'd caution that with multiple update panels you'll want to be careful. Make sure you set the UpdateMode to Conditional. Otherwise, when one update panel is "posted back" to the server, all of the …
2
votes

SharePoint stream file for preview

Ok, I resolved the problem, several factors at play here. Firstly this support Microsoft article was beneficial: …
2
votes

autoeventwireup performance cost

From MSDN article. Performance Tips and Tricks in .NET Applications Avoid the Autoeventwir …
0
votes

Annoying exception in asp.net

My initial guess is that ViewState remembers the error message. Try disabling ViewState on the JSLiteral control. …