The_content display a different content from a previous loop

Try rewinding the Loop, via rewind_posts(), between the two loops?

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
        asd
<?php endwhile; endif; ?>

<?php rewind_posts(); // REWIND THE LOOP! ?>

<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
        <?php the_content(); ?>
<?php endwhile; ?>