How to format
Using AccountingForm :
I show first the output of one function for your number
n = 2.60152*10^-8 (*your number *)
padIt[n, {15, 14}]
(* +0.00000002601519 *)
the first parameter is the number to format, then there is a list of 2 numbers. The first is the total number of digits you want in the field. The second number is how many digits to the right of the decimal point. This function adds zeros to the left of the decimal point if there are no other digits to fill in. This is I need to make sure the field width is always the same for each number. You can change these options as you need. Here is the function
padIt[v_?(Element[#, Reals] &), f_List] := AccountingForm[Chop[v] , f,
NumberSigns -> {"-", "+"},
NumberPadding -> {"0", "0"},
SignPadding -> True];
You can change the above options shown to customize it as needed. (remove the +,- sign, change padding, etc..)
update
How to export
SjoerdC.deVries asked a good question in the comment above on how to export these numbers to a text file. This below shows one way to do it
Clear["Global`*"]
SetDirectory[NotebookDirectory[]];
padIt[v_?(Element[#, Reals] &), f_List] :=
AccountingForm[Chop[v] , f,
NumberSigns -> {"-", "+"},
NumberPadding -> {"0", "0"},
SignPadding -> True];
output = OpenWrite["info.txt", FormatType -> OutputForm, PageWidth -> Infinity];
$Output = output;
n = 2.60152*10^-8 ;
Print[OutputForm[padIt[n, {15, 14}]]];
Now looking at the text file foo.txt shows that the number is written in text format.

NumberFormis what you're looking for. – Silvia Dec 12 '12 at 6:08