Pesquisar no apoio

Evite burlas no apoio. Nunca iremos solicitar que telefone ou envie uma mensagem de texto para um número de telefone ou que partilhe informações pessoais. Por favor, reporte atividades suspeitas utilizando a opção "Reportar abuso".

Learn More

open/save dialog box - filename appearing on dialog

  • 1 resposta
  • 1 tem este problema
  • 1 visualização
  • Última resposta por cor-el

more options

My CGI program can download a selected file. The open/save "opening" dialog appears correctly, and the download works fine. The only issue is the filename appearing in the dialog box is the name of the CGI program, not the name of the file to be downloaded. What am I doing wrong? TIA

// CGI snippet

          printf( "Content-Type: %s\n\n", "application/octet-stream");
          printf( "Content-Disposition: attachment; Filename=\"map.pdf\");
My CGI program can download a selected file. The open/save "opening" dialog appears correctly, and the download works fine. The only issue is the filename appearing in the dialog box is the name of the CGI program, not the name of the file to be downloaded. What am I doing wrong? TIA // CGI snippet printf( "Content-Type: %s\n\n", "application/octet-stream"); printf( "Content-Disposition: attachment; Filename=\"map.pdf\");

Todas as respostas (1)

more options

Aren't you missing a quote?

printf( "Content-Disposition: attachment; Filename=\"map.pdf\"");