How to install .NET Framework 3.0 on Windows XP Embedded SP3

42

Found this method and it seems to be the only one that actually works:

Perform actions in the following order:

  1. Use .Net Framework Cleanup Tool to make your system .NET free
  2. Install .NET Framework 2.0 Service Pack 1
  3. Install .NET Framework 3.0 (the error should stop now)
  4. Install .NET Framework 3.0 Service Pack 1
  5. Install .NET Framework 3.5
  6. Install .NET Framework 3.5 Service Pack 1

Source

Share:
42

Related videos on Youtube

sonne
Author by

sonne

Updated on September 18, 2022

Comments

  • sonne
    sonne almost 2 years

    Hello im trying to get my node.js to work, however my site only renders one page and thats my index file? why is that? I tried to load my other page with app.get and then render it but it doesn't work..

    app.engine('dust', cons.dust);
    
    app.set('view engine', 'dust');
    app.set('views', __dirname + '/views');
    app.use(express.static('public'));
    app.use('/img', express.static(path.join(__dirname, 'img')));
    
    app.get('/'), function(req, res){
        res.render('behandlare');  //cant i load like this?!?!
    }
    
    
    app.use(bodyParser.json());
    app.use(bodyParser.urlencoded({ extended: false}));
    
    app.get('/', function(req, res){
    
    pool.connect(function(err, services, done){ 
        if(err) {
            return console.error('error fetching services from table', err);
        }
        services.query('SELECT * FROM public.services', function(err, result){
            if(err){
                return console.error('error runnig query', err);
            }
            res.render('index', {services: result.rows});
            done();
        });
    });
    });
    

    both are in views folder

  • Ƭᴇcʜιᴇ007
    Ƭᴇcʜιᴇ007 over 10 years
    I don't mind that you took (back) the check-mark, but link-only answers are a no-no. Please include pertinent information directly in your answer and link the web page as a source.
  • sonne
    sonne over 10 years
    @techie007 I've corrected based on your suggestion.
  • Admin
    Admin about 4 years
    hmm it works but now my index file doesn't work, why is that?
  • Bibek
    Bibek about 4 years
    There might be something wrong with your query. I give you one more suggestion. Better use Async/Await instead of using callback. It makes your code more clean and structured also you can catch error more easily.