DW CS4 Links to MSSQL Database, sees fields/data but won't display on webpage

I'm trying to get a Dynamic Data Table to show in my webpage but I can't.  (Using ASP JavaScript)
I'm using DW CS4 (10.0 build 4117) and connecting to an MSSQL database on a Windows platform server hosted by Verio.
I can successfully link to the database, I can see my data correctly when I bind the record set and do a "Test SQL Statement" , see images below:
My Design View of the page with the table shows the correct fields and looks like:
Everything should look when I switch to Live View or view the page on a browser, right??  Well instead I get this:
If the pic is unclear it says:
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
/Test2009/Untitled-1.asp, line 5
Line 5 of course refers to the ActiveConnection command which uses the INCLUDE file for the connection string.
The Line 5 is
Recordset1_cmd.ActiveConnection = MM_PMCDonSQL_STRING;
And the INCLUDE reverenced is:
var MM_PMCDonSQL_STRING = "dsn=PMCSQL1;uid=pmcapp0010sql;pwd=FloraVista49;"   
These are parameters for logging into the MSSQL database (This is just a test database so showing password doesn't matter)":
Server By Name:  SQLExpress4.mql14000.MSSQLServers.com,1433\SQLExpress4
Server By IP:  128.121.85.21,1433\SQLExpress4
Database Name:  pmcapp0010
Login ID:  pmcapp0010sql
Password: FloraVista49
WHAT AM I DOING WRONG?

No one wanted to help me but I figured out that I was not referencing the DSN on the test server, only the local DSN. 
The information to connect to the MSSQL database given by my hosting company was not correct for Dreameweaver (or MS Access) either.

Similar Messages

  • My iphone 4 sees my printer, but won't connect.

    My iphone 4 sees my printer, but won't connect. Connect icon just keeps spinning!

    Is your printer supported by airprint:
    http://support.apple.com/kb/HT4356

  • My hotspot won't connect my computer to the internet since I upgraded my phone to ios7. The PC sees the hotspot but won't connect. The op sys on the PC is windows 7 ultimate. Can anyone help?

    My hotspot won't connect my PC to the internet since I upgraded the op sys on the 4s iphone. The PC sees that hotspot but won't connect. The op sys on the PC is windows 7 ultimate. Can anyone tell me what to do please?

    Glad to hear it is all straightened out. You are right about the upgrade cost. That is one reason why Adobe switched to monthly licensing—no more upgrade cost <g, r, & d>. Of course we do have nearly monthly product upgrades. It is almost like playing whack a mole.

  • I previoulsy have adding many CD to my iTunes music library and then synched them with my iPhone so that I have all music in both places. And I could the CDs in iTunes or iPhone with no problems. Recently, my iTunes "sees" the music but won't play it. Why

    I have added many CD to my iTunes music library and then synched them with my iPhone so that I have all music in both places. Then I could the play them in iTunes or iPhone with no problems. Recently, my iTunes "sees" the music library but won't play any of it becuase "the original could not be found". If I attach my iPhone, then it pays them through the iPhone, but still not through the library in iTunes. How can I get the music library on my iPhone to transfer (i.e. restore it) to iTunes? I have iPhone 4S but have not upgraded to the iOS 6, and have not had any problems until last week.  Help!  Thanks.

    Check the manual for whatever backup program you used, or, if you just copied the files over, copy them that.
    How to restore data to your PC is outside the scope of these forums.

  • Bonjour sees my printer but won't let me connect to it.

    We've got a canon mp460 hooked up via USB to our mac mini which runs 10.5. I installed bonjour on my new laptop, which runs vista. The printer wizard SEES the printer, but when I try to connect to it I get a message that says "You do not have sufficient access to your computer to connect to the selected printer"
    I've turned off all the firewalls, enabled printer sharing, and everything else I can think of. Any thoughts?

    *I got it to work after the Bonjour Printer Wizard proved ineffective.*
    Here is what I did:
    1. Installed the iP4500 printer driver from CD (v 2.11) while the printer was connected to my WinXP machine with a USB cable.
    2. Reconnected printer to AEBS and restarted AEBS.
    3. Select 'Add a new printer' in Windows
    4. Select 'Local Printer' in the dialog box (auto detect and install
    should be off), click next.
    5. Choose 'Create a new port' and "Standard TCP/IP Port'. Click next.
    6. For the printer IP address, enter the address of the base station 10.0.1.1.
    *7. Set Port Number: 9103*
    - The one time the Bonjour Print Wizard saw my iP4500 and set it up, it append '9103' to the location name. I assumed it selected port 9103. After trying ports 9100, 9101, and 9102 (which all failed to work), I successfully connected with port 9103. Oddly, the Bonjour port still does not work.
    8. Click next.
    9. For the device type, choose 'Canon iP4500 series', then click Finish.
    10. Choose your printer from the list and follow the rest of the prompts to install and configure the driver.
    *It now prints color duplex from my WinXP machine across the wireless network.*
    Leo

  • DG4ODBC MSSQL query works in sql, but won't compile in PL/SQL.

    I'm using DG4ODBC from 11g to query a SQL Server database. The query I'm using works in a SQL DEveloper SQL worksheet and sqlplus, but won't compile in a PL/SQL procedure.
    The query is
      INSERT
      INTO crm_labels
          accountid,
          label_name,
          cir_labelcode,
          cir_knownasname,
          cir_countryidname,
          parentaccountidname,
          cir_customertypecode1,
          cir_customertypecode2,
          cir_dealstatus
      SELECT "AccountId",
        REPLACE("Name",chr(0)) label_name,
        REPLACE("Cir_labelcode",chr(0)) ,
        REPLACE("Cir_knownasname",chr(0)),
        REPLACE("cir_countryidName",chr(0)),
        REPLACE("ParentAccountIdName",chr(0)),
        "Cir_customertypecode1",
        "Cir_customertypecode2",
        "Cir_dealstatus"
      FROM "dbo"."Account"@crmsvc
      WHERE "Cir_labelcode" IS NOT NULL;The error message is
    Error(1): ORA-04052: error occurred when looking up remote object dbo.Account@CRMSVC ORA-01948: identifier's name length (34) exceeds maximum (30)I'm guessing that it is attempting to describe additional columns in the Account table.
    If I remove the dbo,
      FROM "Account"@crmsvcI get
    Error(1): ORA-04052: error occurred when looking up remote object PUBLIC.Account@CRMSVC ORA-00604: error occurred at recursive SQL level 1 ORA-28500: connection from ORACLE to a non-Oracle system returned this message: [Microsoft][ODBC SQL Server Driver][SQL Serve which is less than helpful. However, if I try to use the same query to create a materialized view, I get.
    SQL Error: ORA-04052: error occurred when looking up remote object PUBLIC.Account@CRMSVC
    ORA-00604: error occurred at recursive SQL level 1
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [Microsoft][ODBC SQL Server Driver][SQL Server]Invalid column name 'Address1_TimeZoneRuleVersionNu'. {42S22,NativeErr = 207}[Microsoft][ODBC SQL Server Driver][SQL Server]Invalid column name 'Address1_UTCConversionTimeZone'. {42S22,NativeErr = 207}[Microsoft][ODBC SQL Server Driver][SQL Server]Invalid column name 'Address2_TimeZoneRuleVersionNu'. {42S22,NativeErr = 207}[Microsoft][ODBC SQL Server Driver][SQL Server]Invalid column name 'Address2_UTCConversionTimeZone'. {42S22,NativeErr = 207}[Microsoft][ODBC SQL Server Driver][SQL Server]Invalid column name 'Pias_NewLabelInDealNotificatio'. {42S22,NativeErr = 207}
    ORA-02063: preceding 2 lines from CRMSVCwhich seems to confim that in some circumstance, oracle will attempt to parse more than was asked for.
    Any work arounds?
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE 11.2.0.3.0 Production
    TNS for 64-bit Windows: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    DG4ODBC is also 11.2.0.3

    The gateway claims about this column "Address1_TimeZoneRuleVersionNu" which is not listed in your select list.
    When a gateway connection is established it first checks out all columns of the table you want to select to determine the data types and then it fetches the data for the columns you want to select. But there's also an exception - when you use functions the gateway is not able to translate into the syntax of the foreign database. in this case ALL columns will be fetched into the Oracle database and the result is processed locally (post processing).
    You're using replace function which won't be mapped to the foreign database equivalent using DG4ODBC so it will post process the result and fetch from all columns all the data into the Oracle database. Your table contains a column which exceeds the 30 character limitation of Oracle, hence the select will fail.
    The only work around is to create a view on the foreign database side which reduces the column name length to 30 characters or less.

  • Not able to connect to wifi using iPhone 4 with OS5, sees the network but won't connect.

    Recently upgraded my iPhone 4 to the OS5 and I keep having sporadic issues with connecting to my home wifi, it sees the network but never connects.  I turned of Location Services and Cellular Data for that had worked sometimes, but now it just keeps spining and never connects.  I tried to reset network settings, reset my wifi router and reset my phone and nothing, it will connect at my church for example and other places but not at home.  I have MAC addressing security set on my router and I verified my iPhone MAC address is authorized.  Any other suggestions?

    Try restarting your router first, turn it off for a minute then back on. then go to settings on your phone, then wifi, tap on the blue arrow to the right of your wifi 's  name, then tap forget this network. Then go to the home screen, Then hold the home and off button down until the apple symbol comes up. Then go back into wifi and try to connect.

  • After connecting to Bluetooth keyboard, iPad 2 will not connect to Internet (wifi) at all. Wifi is ok, have tried turning off bltooth, wifi on iPad. It sees the network but won't connect.  Help?  Have also reset network settings etc

    My iPad wifi was working great until I I connected it by Bluetooth to a keyboard (zagg).  It was the first time I'd used Bluetooth
    Immediately Internet was dropped on my ipad. My iPhone was and is still connected no prob. And I cannot get the iPad wifi to work again....at all!!!
    This is major as I am away from my desktop for three months.  Any fix cannot involve being at my desktop with iTunes which is 10,000 km away
    So far This is what I've tried based on other discussions-
    -turned Bluetooth off and unpaired to keyboard which was also turned off
    - turned iPad wifi off and on (several times)
    - forgot the network I useArrive Jul 19 depart Aug 25th. Originally it was Sept 9.
    -- reset network settings
    What happens is that the iPad sees the network and I enter my password. But, instead of getting "check mark" indicating a successful connections it keeps "circling".  Sometimes the airport bars will show, but disappear or flicker.  It never connects with a check noted in settings.   Any attempts to use internet confirm there is no connection
    My network is not a cafe or public network. It is one I regularly use here at my family's home where I am visiting
    Any ideas!

    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    Change the channel on your wireless router. Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    Another thing to try - Go into your router security settings and change from WEP to WPA with AES.
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130?tstart=60
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • The memo field in forms won't display text?

    I am using Firefox 33.1.1 on a WindowsXP Pro system and have been using FireFox for quite some time . . .
    Recently, I must have done something, I just don't know, but I can't seem to remedy the problem.
    I create and use a lot of forms. Standard <form></form> HTML forms.
    Whenever I pull up a form, I can no longer see any text as I type into the MEMO field. I also don't see any contents of the MEMO field when I recall a record fromn the database within the form.
    This is happening ONLY with the MEMO field.
    This very message I had to type in notepad and copy and paste it into this bug report form.( OMG - when I pasted this text into this form, I can see the text!! But still not in other forms)
    YET, the text is indeed in the form. This text will display when recalling a record to the webpage and displaying the memo field contents on the page.(Not in form)
    I have done all I can according to FireFox problem resolution suggestions including uninstalling and reinstalling a fresh pristeen copy of Firefox to a diff location on HD.
    I do NOT have this problem when I go into Windows IE. I know there is no problem with the form itself or database contents. This happens on ANY memo field at ANY website, not just mine.
    I cannot say if this began after an FF update or not. I feel it may be a simple fix. I may have hit a key or combination of keys that changed a setting causing this, but I dont know where.
    Any clues would be helpful.
    thanks
    jim

    Try to disable OMTC and leave hardware acceleration in Firefox enabled.
    *<b>about:config</b> page: layers.offmainthreadcomposition.enabled = false
    *http://kb.mozillazine.org/about:config
    You can try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    You need to close and restart Firefox after toggling this setting.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *https://support.mozilla.org/kb/upgrade-graphics-drivers-use-hardware-acceleration
    This can be a problem with the font that is used to display the text.
    You can do a font test to see if you can identify corrupted font(s).
    *http://browserspy.dk/fonts-flash.php?detail=1
    You can try different default fonts and temporarily disable website fonts to test the selected default font.
    *Tools > Options > Content : Fonts & Colors > Advanced
    *[ ] "Allow pages to choose their own fonts, instead of my selections above"

  • Is it possible to create a copy of entire database, not the data, but just database structure?

    Greetings community,
    This question is related to EXPRESS edition.
    Let’s say that I have MyDatabase2014 and I’ve been populating it with some data during the year 2014. Before the end of the year, I want to prepare another database named MyDatabase2015, which should be empty, but of course it should have
    all tables, relations, indexes and stored procedures just like MyDatabase2014. The idea is just to change a connection string and to continue using the same app for the same job.
    So in SSMS, I right-clicked the database, choose script database as / create to / new query, but I didn’t get what I wanted. In query window I’ve got just create database statement, and below that few dozen of alter database set ansi this
    or that statements, and set many other things. However, no table creation was scripted. Also, no stored procedures have been created, and about users, and other security objects better not to start to talk about.
    I could have achieved that simply by right-clicking databases node and select new database. So what’s the point of “script database as”?
    Does this work in SQL server editions other than EXPRESS?
    When it comes to express edition, what’s the best practice to get the empty copy of a database?
    Thanks for any help.

    For scripting out the users and their permissions you can use this script
    -- Capture permissions for all users in a DB
    SET NOCOUNT ON
    DECLARE @Database varchar(max)
    SET @Database = '<Db_Name>'-- set the database name here
    IF EXISTS (SELECT * FROM SYS.SYSDATABASES WHERE name = @Database)
    EXEC('USE ' + @Database + ';
    DECLARE @temp table(Extract Varchar(MAX))
    INSERT INTO @temp (Extract)
    SELECT ''EXEC( ''''USE ' + @Database + '; IF NOT EXISTS (SELECT * FROM sys.schemas WHERE name = N'''''''''' + name + '''''''''')IF EXISTS (SELECT *
    FROM sys.database_principals WHERE name = N'''''''''' + name + '''''''''') DROP USER ['' + name + '']''''); ''
    FROM sys.sysusers WHERE islogin = 1 AND hasdbaccess = 1 AND name NOT IN (''dbo'')
    INSERT INTO @temp (Extract)
    SELECT ''EXEC( ''''USE ' + @Database + '; IF NOT EXISTS
    (SELECT * FROM sys.database_principals WHERE name = N'''''''''' + dp.name + '''''''''')
    CREATE USER ['' + dp.name + ''] FOR LOGIN ['' + sp.name + '']''''); ''
    FROM sys.server_principals sp
    JOIN sys.database_principals dp ON (sp.sid = dp.sid)
    AND dp.name NOT IN (''dbo'')
    INSERT INTO @temp (Extract)
    SELECT ''EXEC( ''''USE ' + @Database + '; IF NOT EXISTS
    (SELECT * FROM sys.database_principals WHERE name = N'''''''''' + dp.name + '''''''''')
    CREATE USER ['' + dp.name + ''] WITHOUT LOGIN ''''); ''
    FROM sys.database_principals dp left
    JOIN sys.server_principals sp ON (sp.sid = dp.sid)
    where dp.principal_id between 5 and 16383
    INSERT INTO @temp (Extract)
    SELECT ''EXEC( ''''USE ' + @Database + '; EXEC sp_addrolemember '''''''''' + User_Name([groupuid]) + '''''''''', '''''''''' + User_Name([memberuid]) +
    FROM sys.sysmembers WHERE User_Name([memberuid]) NOT IN (''dbo'')
    INSERT INTO @temp (Extract)
    SELECT ''EXEC( ''''USE ' + @Database + '; ''
    + CASE [a].[state_desc] WHEN ''GRANT_WITH_GRANT_OPTION'' THEN ''GRANT '' ELSE [a].[state_desc] END
    + '' ''
    + [a].[permission_name] + CASE class WHEN 1 THEN '' ON [''
    + [c].[name]
    + ''].[''
    + Object_Name([a].[major_id]) + ''] '' ELSE '''' END + '' TO [''
    + User_Name([a].[grantee_principal_id])
    + ''] '' + CASE [a].[state_desc] WHEN ''GRANT_WITH_GRANT_OPTION'' THEN '' WITH GRANT OPTION'' ELSE '''' END
    + ''''''); '' COLLATE Latin1_General_CI_AS AS [SQL]
    FROM sys.database_permissions a
    inner join [sys].[all_objects] b
    ON [a].[major_id] = [b].[object_id]
    inner join [sys].[schemas] c
    ON [b].[schema_id] = [c].[schema_id]
    INSERT INTO @temp (Extract)
    SELECT ''EXEC( ''''USE ' + @Database + '; ''
    + [a].[state_desc]
    + '' ''
    + [a].[permission_name]
    + '' TO [''
    + USER_NAME([a].[grantee_principal_id])
    + ''] '''');''
    from sys.database_permissions a
    where a.class=0
    INSERT INTO @temp (Extract)
    SELECT ''EXEC( ''''USE ' + @Database + '; ''
    + [a].[state_desc]
    + '' ''
    + [a].[permission_name]
    + '' ON SCHEMA ::''
    + '' [''
    + SCHEMA_NAME([a].[major_id]) +
    + ''] TO [''
    + USER_NAME([a].[grantee_principal_id])
    + ''] '''');''
    from sys.database_permissions a
    where a.class=3
    SELECT Extract AS [Extract] FROM @temp
    GO
    ELSE
    SELECT '--NO'
    GO
     

  • CMS Player 5 Sees ZenTouch in Vista System but won't display conte

    I spent two days researching what to do to get my Zen Touch to work on a new Vista system:
    1) I uninstalled WMP and WMP runtime from my old XP system
    Note: none of the following steps went smoothly (i.e. the CMSP5 wouldn't install because I didn't have a compatible devise installed; then finally found the Zen Touch but froze up on the install until - out of frustration - I disconnected the Zen Touch and the install proceeded)
    2) I uploaded new Creative Zen Touch PlaysForSure Firmware 2..0 using the XP system
    (that erased all my songs on the ZT so I had to reinstall them from the XP system)
    3) I installed Creative MediaSource Player/Organizer 5.0.38 onto the Vista system
    4) I installed Creative PlaysForSure Devices Plugin 5.00.36 for Creative MediaSource 5 Player/Organizer onto Vista system
    5) Launched CMSP5, which now sees a connected Zen Touch (i.e. ZT shows up in the Sources window)
    BUT:
    6) When you click on the ZenTouch, CMSP5/Vista displays the "busy" icon and fails to display the contents of the ZT
    So, I'm 98% of the way to actually being able to use my ZT on the Vista system.
    Can anyone tell me what the missing 2% is? That is, why doesn't CMSP5 see the ZT's contents?

    BTW, the ZT works fine on an XP system using same software as on Vista

  • Itunes sees my ipod but won't allow me to manage its contents

    my fully-charged ipod is connected and itunes sees it, but everything on it is grayed out and can't be touched. i can even sync and have a new podcast move over to the ipod, but once it gets there it's grayed out and can't be touched. i can't play it. i can't delete it.
    by the way, i may be able to sync podcasts, but i can't manually move anything.
    i ran one of the itunes diagnostics and it said everything was fine between itunes and my ipod. no problems.
    i thought it might be a memory problem on my computer because of a number of things open at once, but i've rebooted and it's not that.
    like so many problems, this just showed up out of the blue, after months of no problems at all.
    one last thing. the ipod works fine if i just listen to it, or have it docked in one of my players.
    any ideas. i'll be grateful until next tuesday,

    Click here and follow the instructions.
    (29536)

  • Windows XP laptop sees wireless network but won't connect

    I set up a wireless network on my airport extreme using my MacBook. The McBook runs great on the wireless network. My old Dell laptop running Windows XP sees the wireless network I created (with full signal strength) but every time I hit "connect" I get the following error message, "Windows is unable to connect to the selected network. The network may no longer be in range. Please refresh the list of available networks, and try to connect again." When I referesh the list, the wireless network is still there, and i still cannot connect, getting the same error message.
    Any suggestions?

    Hello apetera. Welcome to the Apple Discussions!
    Per chance are you using WEP for your wireless encryption?
    If so, one of the problems with WEP is that the actual standard relies on a 10 character HEX key for 40bit WEP and a 26 character HEX key for 128bit WEP.
    In order to make things easier, vendors use certain algorithms to convert simple alphanumeric passwords (or passphrases) into HEX keys, thus enabling the use of simple easy to remember WEP password rather than lengthy HEX keys. The problem is that different vendors use different algorithms to generate the HEX key and therefore a ASCII password on an AEBS will be hashed differently on a non-Apple client and vice versa.
    You may find the following articles helpful:
    o Accessing a Airport Network with a Windows XP PC or laptop (with XP SP2)
    o Apple article, especially the part about "Third-party client to Airport".

  • IPhone 5 Wi-Fi problems: "sees" the network, but won't connect

    Hi everybody,
    For the past 3 days I've been having sudden problems with my brand new iPhone 5 (version 6.0.2 {10A551}).
    It just won't connect to the internet, no matter what I do. It actually "sees"the availble networks, but when I put the password in, it says"Unable to connect to the network".
    I tried Resetting Network settings and All Settings, to no avail.
    The irony is that I get Facebook notifications, App of the day Notifications, occasional mails, but nothing else. Email sync is erratic, and always with the little round circle where the WiFi icon should be. No Whatsapp, Viber, etc.
    I'm totally baffled and equally desperate.
    Can anyone help me please?
    Many thanks in advance and Happy New Year to all thread readers.
    Joyce

    Try restarting your router first, turn it off for a minute then back on. then go to settings on your phone, then wifi, tap on the blue arrow to the right of your wifi 's  name, then tap forget this network. Then go to the home screen, Then hold the home and off button down until the apple symbol comes up. Then go back into wifi and try to connect.

  • Satellite L300-135 sees WLan network but won't connect

    Well, (new laptop) initially it worked with my BT hub at home... then decided to stop working - recieves no signal or response from the router - even though other laptops in the house can connect without any problem
    and now the wireless does not work - ie. I can see the wireless connection but cannot connect.
    I'm sure the wireless is not switched off (before anyone suggests so)
    I searched for more up to date drivers but nothing seems to work.
    Please help!

    Hi
    First of all you should check if your WLan card has been recognized properly.
    I mean you have to check it in the device manager!
    Your WLan card should be the Realtek 802.11g(RTL8187B)
    Download and install the newest WLan driver from the Realtek page.
    Then update the BIOS.
    Finally configure all the WLan settings again.
    In device manger -> WLan card properties -> Advanced tab disable the power saving settings and check other settings which could affect the connectivity.
    Good luck

Maybe you are looking for