header

Gridview height issue

Hello all. This is a simple one but it is defeating me. Ok, I have a gridview, lovely stuff. I have attempted to set the height of the headers so that the height is maintained regaardless of the content of the gridview. However, if a data row requires a bit more height itself (to include the data), the height of the heading also incre...

What header should I include for memcpy & realloc in a C++ iPhone program?

Hello, I am porting a project to the iPhone and it uses realloc and memcpy which are not found. What is the header to include? it's a projet mixing objc and c++ and I am starting to be lost. Thanks in advance for your help! ...

How to do I integrate a 304 in Django?

When a user requests the same page, with the same data...I'd like Django to return a 304, so that the browser doesn't have to load the page all over again. I'm new to this. How can this be done? Thanks. ...

CSS Header and Footer are breaking on Zoom-in

Hi, I have just finished redesigning this site (www.imustsolutions.co.za) and I have a problem with the header and the footer when the user zooms in (Cntrl + in FF). Here is the problem: The background color of the footer/header does not paint to fill the rest of the screen (horizontally) when the user zooms in. What am I doing wrong?...

Can headers be sent in an AJAX request?

Can I call the server to set a new cookie with an AJAX request (that is, after the page has already loaded)? For example, when a visitor hits a link, ajax would open a php file that sets a new cookie like this: setcookie('cookiename', 'true', time()+3000, "/",'...'); But this is done after the html (the page containing the actual <a>...

Reading first row as header is easy, what gives with two rows being the header

I have been using surveygizmo which is an amazingly powerful online questionnaire presenter. The data can be exported as a csv file but alas it has two [not one] header rows. The first row specifies the question and the second row contains possible responses that the respondent could have checked off. This seems highly aberant in the dat...

Getting raw HTTP response headers

Is there any way to get raw response http header? The getHeaderField() method doesn't work for me, because server spits multiple 'Set-Cookie' and some of them get lost. ...

Enterprise Library 4.0: How to get rid of headers and footers when using a Rolling Flat File Trace Listener

As the title already says, is there a way to get rid of the headers and footers that are placed before and after each log entry when using a Rolling Flat File Trace Listener? Although I cleared the "Header" and "Footer" properties the log file still shows an empty line before and after each log entry. Update Here you can see the con...

JQuery: How to get all of a selector's html attributes in one statement, as a string?

Hi all, I've got a div that looks like this: <div id="exampleDiv" class="class1 class2" title="example title"></div> I've selected with JQuery using this statement: var $div = $('#exampleDiv'); What I'd like to get is a string of the tag itself as html, so that I actually get: "<div id='exampleDiv' class='class1'....", etc. Doe...

C89: Need to declare functions before referncing them?

I'm new to C89, and it appears that you must declare a function before calling it. So this is unacceptable: void foo() { bar(); } void bar() { // do stuff } Because bar() is defined after foo() in the file. Is there any way to get around this? Do I need a header file? ...

How to optimize caching of images on a webpage

I have a website that contains pages with many small images. The images are set to cache, with the headers containing: Expires "Thu, 31 Dec 2037 23:55:55 GMT" Cache-Control "public, max-age=315360000" When someone loads a page, however, it seems that we are still forced to send a 304 response for each image--better than sending the w...

How to add custom headers to the System.Net.Mail SMTP class?

I have a SMTP server that only accepts a predefined From sender. However, I can add a custom from header in the DATA structure to set another from (sender ) address. This is possible if I test using Telnet to compose an email message: >helo there >mail from:[email protected] >rcpt to:[email protected] >data From:mag...

Headers and MIME types for HTML email messages (sending through PHP)

What is the correct header information and MIME types for an email message with HTML content only, not mixed type (with both text and HTML). Just to inform, I am using Swiftmailer (PHP) to this job. ...

PdfPTable as a header in iTextSharp

I need a table with about 12 cells to display as a header. The following code fails to do this. I am aware table2 does not have 12 cells. On the second page, only "testing" is displayed. What am I missing? Thanks in advance! Document document = new Document(); try { PdfWriter.GetInstance(document, new FileS...

Increase gridview header tooltip display time

Morning all. I have a gridview that uses a dictionary to show tooltips against the header within said gridview. protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { Dictionary<String, String> headerTooltips = new Dictionary<String, String>(); headerTooltips["Product ID"] = "pr...

Set "Last-Modified" Header to "Date-Modified" of File in ASP.NET MVC ?

Hi Guys, I am trying to figure out in ASP.NET MVC how to optimize getting the "Date modified" to use in the last-modified header in ASP.NET MVC. I dont want to check the date of each request as this seems loss of performance. Basically, at the moment I am using "Release Date" for date-modified, but the problem here is that everytime ...

Massive newbie error while using the PHP header() function.

I'm trying to redirect to a .php page if the $validForm variable is TRUE. Here's my code: <?php session_start(); require("validationLibrary.php"); $validForm = true; ?> <html> <head> <title>Registration Form - 1 of 2</title> </head> <body> <h1>Registration - Part 1 of 2</h1> <p>Please fill in all t...

Form isn't moving to the other page I specified, please help. A PHP newbie problem.

Here's my code: <?php session_start(); require("validationLibrary.php"); $_SESSION['validForm'] = true; if($_SESSION['validForm'] == true){ header("Location: registerFormTwo.php"); } ?> <html> <head> <title>Registration Form - 1 of 2</title> </head> <body> <h1>Registration - Part 1 of 2</h1> <...

Why am I getting this error in Django (I'm trying to do a 304 not modified)

def list_ajax(reqest): #q = request.GET.get('q',None) #get all where var = q. return ... list_ajax = condition(etag_func=list_ajax)(list_ajax) As you can see, I'm trying to return a 304 to the client if the result is the same. But, I am getting this Django error, why?: Traceback: File "/usr/local/lib/python2.6/dist-package...

Flex dataGrid columns missing header text

I created a component that is multiple datagrids side by side that share the same columns (each datagrid is the same as the one before but with different data). Problem The header text only shows up on the last datagrid. How can I get the text to show up on all the datagrid headers? Here is how I instantiate the component. ...