0
votes
1answer
28 views
Why/Where is Apache Mussing with my Content-Type?
The PHP Code:
header("Content-type: text/css", true);
header("Annoying Header: blarg");
print(cft_css_view()) ;
die();
The true in the first header is to replace any previous Content-Type …
3
votes
2answers
50 views
SharePoint Multiple New Item Forms
I've got a custom list with a custom content type. I'm aware that when you create a new item you can see a drop down for the different content types on that list which I assume all have their own …
0
votes
0answers
17 views
Opening of the spWeb.ContentTypes gives SOAP Exception 0x80004004
Hi everybody!
I have the code which going through the sharepoint contenttypes and changes needed field display names. On my local server everything works fine, but on the client side it gives me an …
1
vote
2answers
40 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 what I do
…
0
votes
2answers
26 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")
…
0
votes
2answers
110 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 IE 8) is not …
1
vote
1answer
33 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 looking for a solution …
0
votes
1answer
30 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 have 5 features just …
1
vote
3answers
206 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 perform this can be …
0
votes
5answers
141 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-type to browser!
…
0
votes
2answers
56 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 way to know this …
2
votes
1answer
35 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...
<!DOCTYPE html PUBLIC …
0
votes
2answers
65 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've tried making a …
0
votes
0answers
52 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 in the same …
0
votes
1answer
57 views
How to get ContentType for file in ASP.NET MVC when using File Action Method
Hi there,
Attempting to use asp.net mvc's Action Result of File.
So it would seem that I have to specify a ContentType for the file to be sent to the browser. Currently there is no real limit to …
