Question : External internet down

I can get to internal web pages but can't get out to the internet.  Message = Internet Explorer cannot display the webpage.  My ip address looks good, I did a netsh winsock reset but still won't work.  The internet is working because others can get on it.  This is a windows xp machine with sp3.

Connection is receiving and sending packets.  Any ideas?

Answer : External internet down

Little correction PL/SQL can have multiple DECLARE statments but it should be grouped logically.

Here is example

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
---------MAIN BLOCK STARTS--------------------------------------
DECLARE
   v_num   NUMBER := 1;
BEGIN
   DBMS_OUTPUT.PUT_LINE (V_NUM);

   -- SUB BLOCK STARTS------------------------------
   DECLARE
      v_num2   NUMBER := 2;
   BEGIN
      DBMS_OUTPUT.PUT_LINE (V_NUM2);
   END;      
   -- SUB BLOCK ENDS-----------------------------------
END;                                                     
-----MAIN BLOCK ENDS-------------------------------
Random Solutions  
 
programming4us programming4us