header

Moq, VB, HttpResponseBase and Headers

I'm in the process of writing a heap of tests around some custom controllers using Moq in VB. Up until now, I've not had to deal with VB Lambda shortcomings since I've only moqed properties or methods. That is until this morning when I try also running integration tests using Cassini against my code. I had code to add headers using Resp...

How can I add expire headers for scripts that are not on my server?

Hey I was wandering if you could help me with this. I have a website and I put the expire headers on all pages/img’s and scripts but I don’t kno how I could add expire headers to scripts not on my page. For example Google Analytics it has expire headers set to 1 day. But not Google is my problem. Some other adds from a website are the re...

what is winver?

I was looking at some code and they had this line: #define WINVER 0x0501 in stdafx.h file? Why do you need to define WINVER? How does it affect your code? Can someone please explain? ...

Constructors with default parameters in Header files

I have a cpp file like this: #include Foo.h; Foo::Foo(int a, int b=0) { this->x = a; this->y = b; } How do I refer to this in Foo.h? ...

CSS sticky footer with header outside the page wrap

All the sticky footers require that you place all the content within a page-wrap except for the footer. I have a situation where the header must reside outside the page-wrap: <div id="header">...</div> <div id="page-wrap">...</div> <div id="footer">...</div> Anyone know what the addendum to the CSS would be in this case? ...

Parsing HTTP status code

Hello, I am using PHP to parse the numeric portion of the HTTP status code response. Given a standard "HTTP/1.1 200 OK" response, I'd use: $data = explode(' ', "HTTP/1.1 200 OK"); $code = $data[1]; I'm not an expert on HTTP. Would I ever encounter a response where the code is not at the position of $data[1] as in the above example?...

Table in Header with latex?

I need to create some work instructions in latex. Is there anyway to get a table in the header of a latex page? ...

How could we fool the HTTP protocol?

Although HTTP is ubiquitous it comes with its baggage of Headers which in my case is becoming more of a problem. My data to be transferred is an iota of the HTTP header size. Is there another protocol that I can use which is still understood by the browsers and other networks and doesn't come with the baggage of HTTP? Any other way t...

Getting Row's Name in a DataList

I have a datalist and would like to pull the row names from the table that I am getting my values from for the datalist. Heres an example of what I would like to do. <HeaderTemplate> 'Get data row names 'Maybe something like Container.DataItem(row)? </HeaderTemplate> ...

Why does MSVC++ give my an error if I try to compile a header into an include without a newline? (C++/Windows)

I'm using MSVC++ to program a simple window, and I included a resource file for a menu along the lines of: MYMENU MENU DISCARDABLE //etc. and I created a header file "resourcedef.h" with definitions like #define ID_MYMENU_FILE_CLOSE 1002 I can include it in my main.cpp file without error, however, when I include it in the resource ...

Compacting HTTP Response Headers?

I had asked a few questions regarding compressing HTTP Request headers here and here but I some how skipped the HTTP response part... I am looking for a way to reduce/compact the headers in my HTTP response... The situation is that I am communicating a Java ME app with a remote Server and any extra baggage is causing me to shed out load...

What are sqlite development headers and how to install them?

I am trying to install pysqlite and have troubles with that. I found out that the most probable reason of that is missing sqlite headers and I have to install them. However, I have no ideas what these headers are (where I can find them, what they are doing and how to install them). Can anybody, pleas, help me with that? ...

Session unexpectedly lost?

Hi, I'm at a loss with an annoying issue to do with exporting a report. Basically, a button is pressed and a report is generated server side using the following javascript:- __callExportController(true, { op: 'build', type: exportType }, function(data) { var outputURL = './reportinc/export_controller.php?op=output&filename='; va...

E-mail sent via CakePHP shows up with blank message body when accessed via POP

I'm writing a small CakePHP application for an organization and have included a simple contact form that accepts an email address, subject, and message, and emails the message to the address. Everything seems to work fine, and any email sent to myself or anyone at the organization arrives just fine, except if they access the message via...

SOAP header Axis1.3 wsp security

I have to expose/provide the service method in which I have to implement the Soap Headers Security. Below is the Sample SOAP Header which I have to implement in my Service Method. I am using Axis 1.4, Tomcat 5 and Java 1.5. Response XML :please ignore ' from XML. please consider it as XML. '<'S:Header'>' '<'wsp:authentication'>' ...

HTTP Content-Type header to serve a font file

Hi, I'm making an online EOT converter... What 'Content-Type' header should I set to serve a font file? Thank you. ...

Adding headers to framework for release

I'm building a framework project in XCode and everything builds and looks great except there is no Headers directory in the built Foo.framework. Do I have to add an explicit build phase for this or is there just a setting to which I'm oblivious? PUBLIC_HEADERS_FOLDER_PATH looks promising, but I'm not sure how to use it. ...

WPF tab control spacing between headers

The default behavior of the WPF Tabcontrol is to place the Tab Headers adjacent to each other, without any empty space in between. What if I wanted to specify a gap between the headers? Do I have to define a control template for this? I'm relatively new to WFP and any help is appreciated. Thanks ...

DataGridView White Space After Last Column Header

I'm trying to mimic what every other tabular view does with the DataGridView control, but I can't seem to get the headers correct. I want a blank header to the right of all headers, that does not move, and is not actually a header. Is there a way to paint the default header along the top? Basically, this is my problem:HERE ...

DataGridView override top,left header cell click (select all)

I want to override the behavior of a mouse click in the DataGridView header/column cell (top, left cell). That cell causes all rows to be selected. Instead, I want to stop it from selecting all rows. I see an event for RowHeaderSelect and ColumnHeaderSelect but not one for that top, left header cell. Any ideas? Am I just being blind...