0
votes
1answer
18 views
Downloading pictures/Word documents using ASP.NET
If I put the following code:
Response.ContentType = "image/jpeg"
Response.AppendHeader("Content-Disposition", "attachment; filename=capitol.jpg")
Response.WriteFile(Ma …
1
vote
2answers
30 views
Detecting custom folder content types in MOSS2007
Given an SPListItem representing a folder, I need to find out whether it has the builtin folder content type, or a custom folder content type (with additional fields).
Here is wha …
0
votes
2answers
77 views
Internet Explorer blocked file download; file of “Unknown File Type”
I'm developing a front-end to a Rails application. In cross-browser testing, I immediately discovered that Internet Explorer (apparently all modern versions, but at least IE 7 and …
1
vote
1answer
26 views
Limit the number of available/visible Content Types in document libraries
Users seems to have a hard time picking the right document template when the "New" list contains a lot of items.
Rather then displaying 50 items in the "new" dropdown list I am lo …
0
votes
1answer
27 views
Sharepoint - One feature that creates more than one content type?
Is it possible to create more than just 1 content type with just one feature in Sharepoint?
I've a got a project where a couple of content types inherits from another one and I ha …
0
votes
5answers
124 views
In C#, how can I know the file type from a byte[]?
Hi!
I have a byte array filled from a file uploaded. But, in another part of the code, I need to know this file type uploaded from the byte[] so I can render the correct content-t …
0
votes
3answers
166 views
File extensions and MIME Types in .NET
I want to get a MIME Content-Type from a given extension (preferably without accessing the physical file). I have seen some questions about this and the methods described to perfor …
0
votes
2answers
52 views
How to know the ContentTypeId of a content type made with the Sharepoint interface?
I am working on a workflow in VS which creates a task with content type.
The content type I want to use is a custom content type made with the SharePoint interface.
Is there a wa …
2
votes
1answer
29 views
Is Content-Type meta tag important if responce headers include content-type?
At the moment we set content-type in our responce headers, a bit like this...
Content-Type text/html; charset=utf-8
We also have this at the top of html pages...
<!DOCTYP …
2
votes
3answers
54 views
is there a way to generate a Content-Type header from a file extension in Java?
I have a Java application which sometimes has to generate a Content-Type header from a filename alone. Is there a way to estimate the Content-Type for common extensions? (e.g. ".pd …
0
votes
0answers
34 views
Drupal6: Content Access Permissions can’t be rebuilt
I created a new content type, so it wants me to rebuild content permissions. I clicked the link to do so. It progressed through but seemed to get hung up towards the end. It stayed …
0
votes
2answers
56 views
How to set WebClient Content-Type Header?
To conect to a third party service I need to make a Https Post. One of the requisites set is to sent a custom content type.
I'm using WebClient, but I can't find how to set it. I' …
2
votes
1answer
150 views
How do you add custom menu actions programmatically in SharePoint?
I need to add a custom menu action to a custom content type programmatically in c#. This is because I will not know the URL I need to link to beforehand. The URL to link to will be …
0
votes
1answer
42 views
Deploy 3 ContentTypes using 1 Feature - Only 2 gets deployed.
Hello.
I have a feature which has following manifest file that defines multiple content types:
<?xml version="1.0" encoding="utf-8" ?>
<Elements xmlns="http://schemas.mi …
0
votes
1answer
33 views
Flex: Download file & close new window/tab in IE
Hello everybody,
I'm getting an anoying problem in IE6.02 when trying to download a file through flex + struts action, the browser opens a new window and doesn't close it after th …
