header

PHP "header (location)" isnide IFRAME, to load in _top location?

Hi Webmasters. I have a simple form which is inside IFRAME. When user click on SUBMIT, it redirects to a specific page on my server. The function I use for the redirect is header ('Location: mypage2.html'); exit (); But I want the new page to open in _top location, not inside the same IFRAME that I use. How can I tell the browser t...

UITableView Header View Scrolls

I am using a header view, not section header, with my UITableView. The documentation says that the header view sits on top of the table, but my header view scrolls just like a normal row. Is there a way to make the header view always visible at the top of the table? ...

Display a running number in the WPF DataGrid RowHeader

Hello, I am using WPF with MVVM. How can I bind: a list of numbers or a list of clr objects with property number or a list of strings in my ViewModel to the RowHeader of the WPF DataGrid ? ...

How to make WPF Listview works same as Photoshop layer

As we can see in Photoshop layer window (or other image editting tool also), it has several features: groups with folder-like header (collapse/expandable) ungroupped item (no header) sort "manually" by dragging. In case of No 1, I made groupped item with expander control. (ref) In case of No 3, Sort manually can be solved with this...

Web service soap header authentication

Hi, I have a web service, i want to authenticate the user from the soap header. That is, i want to check a token id (random number) in soap header and validate it against a value in my database and if the number matches i allow the request to go through otherwise i dont want to allow execution of my web method. Is there any clean way o...

C++ linker error when trying to compile a second module using Code::Blocks

So I'm trying to learn C++ and I've gotten as far as using header files. They really make no sense to me. I've tried many combinations of this but nothing so far has worked: Main.cpp: #include "test.h" int main() { testClass Player1; return 0; } test.h: #ifndef TEST_H_INCLUDED #define TEST_H_INCLUDED class testClass { ...

Post values in PHP Headers

Hi.. I want send some data to a remote webpage from my site. Actually it can be achieved through form hidden variables. but for security reason, i want set as post variables in header and then send to that webpage. i use this code $post_data = 'var1=123&var2=456'; $content_length = strlen($post_data); header('POST http://localhost/...

Header redirects to page that doesn't exist?

Hi everyone, I have this strange behavior, PHP headers act differently on webserver and localhost. Example On web hosting function header("Location: /content/".$page['url_language']."/".$page['direction']."/".$w['id']."/") redirects to index.php and the /content/".$page['url_language']."/".$page['direction']."/".$w['id']."/" ar...

Set File header of ".txt" file in .Net

Is it possible to store some special content inside file header of ".txt" file using .Net ? If yes how ? Please give me a sample code. ...

Declaration for object for which creation is wrapped in macro

The following macro is defined in our code: #define MSGMacro(obj, arg) MyPaymentClass obj(arg) Where MSGMacro is used to creates the object of type MyPaymentClass using code like MSGMacro(Card, 1); MSGMacro(Cash, 2); ---- ---- //removed unwanted things to keep question cleaner. All the above code is in one cpp file, Now the pro...

Java webapp: how to implement a web bug (1x1 pixel)?

In the accepted answer in the following question, a SO regular with 13K+ rep suggests to use a "web bug" (non-cacheable 1x1 img) to be able to track requests in the logs: http://stackoverflow.com/questions/1784893 How can I do this in Java? Basically, I've got two issues: how to make sure the 1x1 image is not cacheable (how to set t...

How to set cookies via PHP in the middle of a document?

Hi all, how can I set cookies in the middle of a document, without incurring a 'headers already sent' error? What I'm trying to do is make a log out script (the log in cookie setting works...so odd. Is it because it's enclosed in an if statement?) however I've already echoed the page title and some other stuff at the top of the page, bef...

Get current ajax url and dynamically create link to corresponding page in a different language

Hi all, I am working on a website that uses a hashchange ajax navigation. The urls look something like this: domain.com/#contact.html etc... The site is going to exist in several languages and i want to place the language menu outside of the ajax content div, in the header for instance (a part of the page that stays the same). My...

Opening and snooping DLLs

Is there a way you can open and snoop DLLs? Like, see what functions are inside, etc? Is there some sort of header in them with tables of functions, information embedded by the maker of the dll, etc? Also, how do you find/view that information? Thanks! Russel ...

How would I intercept all pages/images on my website?

How would I intercept all pages and images on my website to add the header on my website? For example, if somebody went to "www.bla.com/submit.png" it would include my header, and the image. ...

how to force browser to re-request page after history.back()

Hi, I've got two scripts: 1.php and 2.php. Here they are: 1.php <?php header('Pragma: no-cache'); header('Cache-Control: max-age=1; no-cache'); header('Expires: Tue, 1 May 1985 01:10:00 GMT'); header('ETag: "'.md5(rand(1, 1000)).'"'); print date('H:i:s'); ?> <a href="2.php">pay</a> 2.php <a href="javascript:history.back()">back</a...

Defining where on the page the flowdocument I am printing will 'start' and 'end'

Dear community. I am almost done with implementing a printing functionality, but I am having trouble getting the last hurdle done with. My problem is, that I am printing some reports, consisting of a header (with information about the person the report is about), a footer (with a page number) and the content in the middle, which is a F...

PHP header Location works in the middle of HTML

Hello. I'm having problems understanding how a header("Location: http://www.google.com/"); can work in the middle of a HTML page's <body>. Shouldn't there be an error since the header has already been sent due to the HTML output, way before the <?php ... ?> part started. I'm referring to the warning Cannot modify header information - h...

Custom headers with pycurl ?

Hi i'm wondering if i can send a custom header like "yadayadayad" to the server with the pycurl requsest ? Thanks :) ...

Pass value from one ASP.NET app to another via HTTP Header

We are implementing a single sign on mechanism in an enterprise environment, where the token is shared between applications using HTTP header. Now, in order to do the integration test, I need to write an application to simulate this. Is there any way in ASP.NET where I can redirect to another web-page and pass a custom HTTP header in t...