Click here to Skip to main content
15,895,256 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: Sending of email in VWD 2005 Pin
Vasudevan Deepak Kumar22-Feb-07 17:45
Vasudevan Deepak Kumar22-Feb-07 17:45 
QuestionHow to get the ceckbox value in to an Excel File Pin
antithx21-Feb-07 21:50
antithx21-Feb-07 21:50 
AnswerRe: How to get the ceckbox value in to an Excel File Pin
Michael Sync21-Feb-07 22:38
Michael Sync21-Feb-07 22:38 
GeneralRe: How to get the ceckbox value in to an Excel File Pin
Michael Sync21-Feb-07 22:54
Michael Sync21-Feb-07 22:54 
QuestionFrom php - passing Array to Javascript [modified] Pin
hiral_shah21-Feb-07 21:32
hiral_shah21-Feb-07 21:32 
AnswerRe: From php - passing Array to Javascript Pin
Bradml22-Feb-07 0:21
Bradml22-Feb-07 0:21 
GeneralRe: From php - passing Array to Javascript Pin
hiral_shah22-Feb-07 18:10
hiral_shah22-Feb-07 18:10 
GeneralRe: From php - passing Array to Javascript Pin
Bradml22-Feb-07 22:19
Bradml22-Feb-07 22:19 
I'll just give you a little piece of code I think would be useful to this example so that you can see what I am talking about:

public function list_of_numbers($from, $to, $selected=null, $aslist=false){
        
        $list='';
        while ($from <= $to) {
            $list .=$from . "\n";
            $from++;
        }
        
        if ($aslist) {
            return $list;
        }else{
            $arrayofages = array_diff(explode("\n",$list), array(""));
            
            
            $newlist = null;
            foreach ($arrayofages as $key=>$age){
                $string = '';
                $string = "<option value=\"$age\"";
                if ($age == $selected) {
                    $string.=' selected="selected"';
                }
                $string .= '>'. $age."</option>\n";
                $newlist .= $string;
            }
            return $newlist;
        }
    }






Brad
Australian

- Captain See Sharp on "Religion"

any half intelligent person can come to the conclusion that pink unicorns do not exist.

AnswerRe: From php - passing Array to Javascript Pin
haggenx22-Feb-07 3:44
haggenx22-Feb-07 3:44 
GeneralRe: From php - passing Array to Javascript Pin
hiral_shah22-Feb-07 18:06
hiral_shah22-Feb-07 18:06 
QuestionHow to apply css to file Upload control in ASP.NET 2.0 Pin
varshavmane21-Feb-07 19:59
varshavmane21-Feb-07 19:59 
AnswerRe: How to apply css to file Upload control in ASP.NET 2.0 Pin
Michael Sync21-Feb-07 22:34
Michael Sync21-Feb-07 22:34 
AnswerRe: How to apply css to file Upload control in ASP.NET 2.0 Pin
badgrs22-Feb-07 1:35
badgrs22-Feb-07 1:35 
Questioncan we use C# and VB,Net in the same project?? Pin
Rahithi21-Feb-07 18:49
Rahithi21-Feb-07 18:49 
AnswerRe: can we use C# and VB,Net in the same project?? Pin
Michael Sync21-Feb-07 21:52
Michael Sync21-Feb-07 21:52 
GeneralRe: can we use C# and VB,Net in the same project?? Pin
Rahithi22-Feb-07 1:57
Rahithi22-Feb-07 1:57 
GeneralRe: can we use C# and VB,Net in the same project?? [modified] Pin
Michael Sync22-Feb-07 16:27
Michael Sync22-Feb-07 16:27 
GeneralRe: can we use C# and VB,Net in the same project?? Pin
Rahithi22-Feb-07 17:40
Rahithi22-Feb-07 17:40 
GeneralRe: can we use C# and VB,Net in the same project?? Pin
Michael Sync22-Feb-07 17:53
Michael Sync22-Feb-07 17:53 
GeneralRe: can we use C# and VB,Net in the same project?? Pin
Tuwing.Sabado22-Feb-07 17:24
Tuwing.Sabado22-Feb-07 17:24 
GeneralRe: can we use C# and VB,Net in the same project?? Pin
Rahithi22-Feb-07 18:13
Rahithi22-Feb-07 18:13 
QuestionJavascript Keyboard Integration Pin
pHysiX21-Feb-07 18:27
pHysiX21-Feb-07 18:27 
AnswerRe: Javascript Keyboard Integration Pin
Bradml22-Feb-07 0:19
Bradml22-Feb-07 0:19 
GeneralRe: Javascript Keyboard Integration Pin
pHysiX22-Feb-07 11:57
pHysiX22-Feb-07 11:57 
QuestionVML Issue in IE6 Strict Mode Pin
T-Smooth21-Feb-07 6:22
T-Smooth21-Feb-07 6:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.