Question : Why is FF browser displaying "you have chosen to open..." when I click on link to html page

url: http://www.freemovefreemoney.com

Clicking on a link to an html page produces a pop-up from the Firefox Windows XP browser that says

"You have chosen to open
such_and_such_page.html,
which is a: Firefox document
What should Firefox do with this file?"
followed by selectable choices.

What would be causing this? It happens now on every link from the home page of this site.

Answer : Why is FF browser displaying "you have chosen to open..." when I click on link to html page

Ok, if you think the problem is in the VB code then lets use some simple stuff to check what you are sending to the database. Instead of:

Me. Line2DataTableAdapter.Fill(Me.L2ReportDataset.Line2Data, DateAndTime1_Start.value, DateAndTime2_End.Value)

Assign values to variables and look at them before passing:

sLine2Data = Me.L2ReportDataset.Line2Data

sDateAndTime1_Start = DateAndTime1_Start.value

sDateAndTime2_End = DateAndTime2_End.Value

Debug.Print sLine2Data & "|" &  sDateAndTime1_Start & "|" &  sDateAndTime2_End

Me. Line2DataTableAdapter.Fill(sLine2Data , sDateAndTime1_Start, sDateAndTime2_End)

This should eliminate the obvious in anycase.

leonstryker

Random Solutions  
 
programming4us programming4us