Help with Dynamic Code not displaying only ASP Shields???

Started working with some .asp pages today and it is not showing me the record set in the brackets. Like this {Recordset.Field} Only giving me the little ASP shield. Looks like this. I have search on google and in dreamweave in the pref's thinking something was not turned on. Can any one help this is driving me nuts.
theDogger

I have been working with DW since UltraDev days and I have never had this issue. I did a fresh install of Win7 Pro and now I get this instead of the dynamic info in the window. I really do not think that it matters what view you are in. I do not want to se what is generated by the DB I just want to see what is supposed to be re-ferenced by the DB in the WYSIWYG.It should not matter if I am working in the Designer or classic or what I usually work in the Dual Mode
It is killing me becasue I can't apply style to the shields it won't let me.
If I run live view I get the proper info. displayed but I should get something like this in the WYSISYG window {rs_innentory.inv-LG-Image} not the damn ASP shield.
I know that I am missing something simple that a tick box or something....it is driving me crazy!
theDogger

Similar Messages

  • Help with html code. not running properly once on server

    The video works fine in captivate and works once i publish it, but when I try to upload it onto the server it does not. This is my first time using captivate 4, and when I matched the codes from my old movies they were quite different. So I just messed with the code I had and made it lok like the old vodes and it runs fine on the server.
    I was wondering if anyone had any ideas on what is going on with the code that it does not work on the server?
    Thank you!!!!!
    -danielle

    Hello Sue. It's very easy actually.
    If you have the lastest update of Muse CC from Nov 2013, there is a FREE Muse Library by musegrid.com that you can download from the Adobe Muse Exchange page that does this specifically using Google Analytics.  Here is the direct link should you like to check it out: 
    http://muse.adobe.com/exchange-library/add-google-analytics
    Start by "Right Clicking" on the "Master Page Icon" in the "Plan View" and choose "Page Properties" from the list of menu options available. 
    This will open up the "Page Properties Dialog Box" for the entire site. Once that dialog box is open, paste your code into the "Metadata" tab section (I believe that tab is displayed at default - at least on the Mac it is - I'm pretty sure it's the same on the Windows platform).
    All anaytics embed code goes in the <head> tag of an html page (note: it actually says "HTML for <head>" at the top of the embed window area - making it helpful to know you're in the right area). This is also where you would add any <meta> tags too like facebook's OpenGraph code etc.
    If using more than one master, included it to all masters.  If just using it on a specific page - say like a landing page, just go to that particular page in your site's "Plan View" and paste it there instead.
    Incase i get too "wordy" i've attached screen shots of what these should look like. 
    Good luck Sue!
    And congratulations on a nice new computer too - its got "juice".

  • Need help with dynamic code generation

    Hi Folks,
    I am trying to dynamically create and execute the following query
    Environment: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0
    DECLARE
    A NUMBER;
    stmt VARCHAR2(200);
         4
         5  CURSOR C1 IS
         6  SELECT TABLE_NAME
         7  FROM DB_MGMT.CTRL_TAB_RETENTION
         8  WHERE RETENTION_PERIOD_IN_MONTHS = 11
         9  AND rownum < 2;
        10
        11  BEGIN
        12  FOR i IN C1
        13  LOOP
        14
        15  -- dbms_output.put_line('Table Name: ' || i.TABLE_NAME);
        16
        17  -- dbms_output.put_line('SELECT min(DT_SKEY), max(DT_SKEY) FROM '||i.TABLE_NAME||' ;');
        18
        19  stmt :='SELECT min(DT_SKEY), max(DT_SKEY) FROM DWH_RSRC_PERF.'||i.TABLE_NAME||';';
        20
        21  dbms_output.put_line(stmt);
        22
        23  execute immediate stmt;
        24  END LOOP;
        25  END;
        26  /I get the following error message
    SQL> @sanity_check
    SELECT min(DT_SKEY), max(DT_SKEY) FROM DWH_RSRC_PERF.FACT_NOK_CELL_SERVICE2_HH;
    DECLARE
    ERROR at line 1:
    ORA-00911: invalid character
    ORA-06512: at line 23Can anybody spot any obvious syntax errors in the above code?
    Thanks in advance
    rogers42

    rogers42 wrote:
    Hi,
    Thanks for the suggestion.
    While getting rid of the ";" helps, but the output of the select statement is not displayed?When you do a SELECT statement in PL/SQL, you have to select the results into variables or arrays.
    Try something like this:
    DECLARE
         CURSOR C1 IS
                       SELECT  TABLE_NAME
                FROM    DB_MGMT.CTRL_TAB_RETENTION
                WHERE   RETENTION_PERIOD_IN_MONTHS = 11
                AND     rownum                  < 2;
         min_dt_skey    NUMBER;
         max_dt_skey    NUMBER;
         stmt            VARCHAR2 (100);
    BEGIN
        FOR i IN C1
         LOOP
            -- dbms_output.put_line('Table Name: ' || i.TABLE_NAME);
            stmt :='SELECT min(DT_SKEY), max(DT_SKEY) FROM DWH_RSRC_PERF.' || i.TABLE_NAME;
            dbms_output.put_line(stmt);
            EXECUTE IMMEDIATE stmt
             INTO min_dt_skey, max_dt_skey;
         dbms_output.put_line (  min_dt_skey   || ' = MIN (dt_skey), '
                        || max_dt_skey   || ' = MAX (dt_skey) for table '
                        || i.table_name
        END LOOP;
    END;

  • Help with dynamic sequel. Return only Distinct Name.

    This is simple but how can I return only distinct login name.  Just want to return one set of values.
    Please see the desire output and the rule below.  I am using SQL2012.
    Thank you for your help in advance.
    USE Tempdb;
    go
    DROP TABLE [dbo].[UserRoleTest];
    GO
    CREATE TABLE [dbo].[UserRoleTest]
     [LoginId] [varchar](35) NULL,
     [UserName] [varchar](35) NULL,
     [DBRole] [varchar](35) NULL
    ) ON [PRIMARY]
    GO
    INSERT INTO dbo.UserRoleTest([LoginId],[UserName],[DBRole])
      VALUES ('[MyDomain\Peter]', 'MyDomain\Peter', '[db_datareader]' ) ;
    INSERT INTO dbo.UserRoleTest([LoginId],[UserName],[DBRole])
      VALUES ('[MyDomain\Peter]', 'MyDomain\Peter', '[db_datawriter]' ) ;
    INSERT INTO dbo.UserRoleTest([LoginId],[UserName],[DBRole])
      VALUES ('[Home\John]', 'Home\John', '[db_datareader]' ) ;
    INSERT INTO dbo.UserRoleTest([LoginId],[UserName],[DBRole])
      VALUES ('User1', 'User1', '[db_datareader]' ) ;
    INSERT INTO dbo.UserRoleTest ([LoginId],[UserName],[DBRole])
      VALUES ('User1', 'User1', '[db_datawriter]' ) ;
    SELECT *
      FROM [dbo].[UserRoleTest]
    go
    USE Tempdb;
    go
    IF OBJECT_ID('dbo.usp_test', 'p') IS NOT NULL
      DROP PROCedure dbo.usp_test
    GO
    CREATE PROCedure dbo.usp_test
    AS
    SET NOCOUNT ON;
    DECLARE @SQLStr      VARCHAR(8000)
           ,@iCounterId  INT
           ,@LoginId     VARCHAR(35)
           ,@UserName    VARCHAR(35)
           ,@DBRole      VARCHAR(35)
           ,@DBName      VARCHAR(40)
           ,@crlf        CHAR(1) = CHAR(13) + CHAR(10) -- carriage return, new line.
    SET @DBName = 'Tempdb'    
    --ALTER USER and ALTER ROLE.
    DECLARE @t TABLE
      iCounterId   INT  IDENTITY(1,1)  NOT NULL PRIMARY KEY NONCLUSTERED
     ,LoginId      VARCHAR(35)             NULL
     ,UserName     VARCHAR(35)             NULL
     ,DBRole       VARCHAR(35)             NULL
     INSERT @t (LoginId, UserName, DBRole)
     SELECT LoginId, UserName, DBRole
       FROM dbo.UserRoleTest
      --WHERE (DBName = @DBName);
    --SELECT * FROM @t
    SET @iCounterId = ( SELECT MIN(iCounterId)
                          FROM @t );
       WHILE ( @iCounterId IS NOT NULL )
         BEGIN
           IF ( @iCounterId IS NULL )
             BEGIN
               PRINT 'Exit'
               BREAK
             END
           -- Pick 2 variables.
           SELECT @LoginId = LoginId
                 ,@UserName = UserName
                 ,@DBRole = DBRole
             FROM @t
            WHERE (iCounterId = @iCounterId )
            --SQL Statement
            --PRINT 'LoginId: ' + @LoginId
            --PRINT 'UserName: ' + @UserName
            --PRINT 'DBRole: ' + @DBRole
             -- This section create users if users do not exist.
             SET @SQLStr = 'USE [' + RTRIM(@DBName) + '];' + @crlf
             SET @SQLStr = @SQLStr + 'IF NOT EXISTS ( SELECT 1 FROM sys.sysusers WHERE [name] = ''' + RTRIM(@UserName) + ''' )' + CHAR(13) +
                              '  BEGIN' +  @crlf + '    CREATE USER ' + @LoginId + ' FOR LOGIN
    ' + @LoginId + ' WITH DEFAULT_SCHEMA = [' + @UserName + '];' + @crlf +
                              '    ALTER ROLE ' + RTRIM(@DBRole) + ' ADD MEMBER ' + RTRIM(@LoginId) + ';'
    + @crlf + '  END;' + CHAR(13) +
                              'ELSE ' + CHAR(13) + '  BEGIN' + @crlf + '    ALTER USER ' + RTRIM(@LoginId) 
    + ' WITH LOGIN = ' + RTRIM(@LoginId) + ';' + CHAR(13) +
                              '    ALTER ROLE ' + RTRIM(@DBRole) + ' ADD MEMBER ' + RTRIM(@LoginId) + ';'
    + @crlf + '  END;' + @crlf
             PRINT @SQLStr
          SET @iCounterId = ( SELECT MIN(iCounterId)
                                FROM @t
                               WHERE iCounterId > @iCounterId )
       END
    GO
    EXECute dbo.usp_test
    -- Result want:
    -- Just return 1 set like below.  Thank you so much.
    USE [Tempdb];
    IF NOT EXISTS ( SELECT 1 FROM sys.sysusers WHERE [name] = 'MyDomain\Peter' )
     BEGIN
       CREATE USER [MyDomain\Peter] FOR LOGIN [MyDomain\Peter] WITH DEFAULT_SCHEMA = [MyDomain\Peter];
       ALTER ROLE [db_datareader] ADD MEMBER [MyDomain\Peter];
       ALTER ROLE [db_datawriter] ADD MEMBER [MyDomain\Peter];
     END;
     ELSE
      BEGIN
         ALTER USER [MyDomain\Peter] WITH LOGIN = [MyDomain\Peter];
        ALTER ROLE [db_datareader] ADD MEMBER [MyDomain\Peter];
        ALTER ROLE [db_datawriter] ADD MEMBER [MyDomain\Peter];
     END;

    Here is an improved version of Prashath's script:
    * I use FOR XML PATH which is guaranteed to work to concatenation. The method that Prashanth uses does not have a defined behaviour.
    * I'm using quotename through out to delimit all names.
    * I did not like that that some names in the table were brackted, but I found a way to neutralise that with parsename. (But that would fail if there is an unquoted name with a dot in it.)
    * I introduced the variables @nl and @to make formatting cleaner.
    DECLARE @sql nvarchar(MAX) = N'',
            @nl char(2) = char(13) + char(10)
    DECLARE @go char(6) = @nl + 'go' + @nl
    ;WITH cte(UserName, LoginId, DBRole, rn) AS (
       SELECT parsename(UserName, 1), parsename(LoginId, 1), parsename(DBRole, 1),
              ROW_NUMBER() OVER(PARTITION BY UserName, LoginId ORDER BY UserName, LoginId)
       FROM dbo.[UserRoleTest]
    SELECT @sql =
       (SELECT CASE WHEN rn = 1 THEN N'IF user_id(' + quotename(UserName, '''') + ') IS NULL ' + @nl +
                        '    CREATE USER '  + quotename(LoginId) + ' FOR LOGIN ' + quotename(LoginId) +
                        ' WITH DEFAULT_SCHEMA = ' + quotename(UserName)
                    ELSE 'ALTER USER ' + quotename(LoginId)  + ' WITH LOGIN = ' + quotename(LoginId)
               END  + @go +
               'ALTER ROLE ' + quotename(DBRole) + ' ADD MEMBER ' + quotename(LoginId) + @go
         FROM cte
         ORDER BY rn
         FOR XML PATH(''), TYPE).value('.', 'nvarchar(MAX)')
    PRINT @sql;
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Need little help with JPA code and displaying database data into tables

    Hello Everyone,
    I am using java6 and Netbeans 6.1 on Windows XP platform.
    This is probably very simple but have'nt been able to figure it out yet. I am using the Travel Java Databse included in NB6 as a learning tool.
    I have a JComboBox connected to Person Table and want to display a Trip table from using the selected item from theJcombobox. In other words, Trip table shows only the Person selected from the Jcombobox.
    If someone could point me on the right direction how to code JPA code or how to use NB6 GUI to accomplish this.
    Thanks

    The w and wi are just table aliases that make it easier to
    referrence those tables by column when joining multiple tables
    (avoids having to prefix column names with the entire table name,
    etc.) When doing a self-join (joining a table to itself), the use
    of table aliases is
    required, otherwise you would have no other way to tell
    which column belonged to which "instance" of table.
    The query itself is pretty simple. It is just using a
    correlated subquery to select only those instances of
    workstationApps where the count of appID instances in
    workstationAppIndex is less than the amount specified in the
    maxConcurrentInstalls for the same appID.
    Also, I do see what you are doing with #form.searchType#, I
    was just making sure that it was what you really intended to do.
    Phil

  • Help with html code for displaying flash animation

    hi all,
    i'm new to the forums :)
    not sure if this is the correct section or not.
    i run a small web based community for xboxlive players and i
    am trying to add an interactive flash file into a block on the main
    portal page
    What
    the file should do- link to sample file
    link to swf
    file- link to actual flash file
    homepage - link to portal
    homepage where the flash file needs to be, if you scroll all the
    way down the bottom of the page you will se it sort of works but im
    stumped as to how to get the full animation to show properly ?
    any help would be most appreciated.
    cheers

    hard to say just what the issue is here, since the file
    operates normally in other embeds - I guessing that it has
    something to do with your BB settings somewhere.

  • Help! Iphoto will not display, only get a revolving beachball!

    Need help very new to MAC and i'm one very frustrated dude at this point! I don't even know how to tell you what OS i'm using.  Here's my issue was trying to import new photo to Iphoto from an SD card and all I can get is a revolving beachball and a blank white screen.  what can I do t fix it?

    This indicates a f connection between the orpolginal and the thumbnail - if you have not bedeleting photos or running disk cleanup software that could have deleted the originals then it is database corruption - Back up your iPhoto library, Depress and hold the option (alt) and command keys and launch iPhoto - rebuild your iPhoto library database
    LN

  • Help with WAP 1142n not displaying web browser?

    Hi all
    Sorry I am new with the Cisco WAP.
    I have my device configured, and it has an IP, subnet, etc.
    I currently have it connected with serial port to my laptop and used PutTy to get into it, that's no problem.
    However, despite it having an IP, I cannot use the web browser with it! This is driving me mad. I want to use the web browser and not the CLI for everything. Let me know if you need screenshots. Everything looks ok to me....it has a BVI1 IP as well as an Ethernet address.
    thanks in advance!

    You currently have configured...
    no ip http server
    ip http secure-server
    Are you sure you are navigating to "https://" ?

  • Firefox page images do not display only text and links

    New desktop (not this one) with windows 8.1 Pro, Firefox 29, Norton Internet security. When I go to many of the Firefox pages images do not display, only text and links. This is true for the "get add-ons" page. I can search for add-ons, but when I try to install one, the installation fails. Is there a security setting in windows or NIS that is blocking Firefox images and installations? The Firefox installation went smoothly without error. Other sites do not have this problem.

    Wow! I never would have thought of that! My time settings were incorrect when I set up the PC, and I thought I set them. I did have the day, date, and time set correctly. But I did not have AM/PM set right. So, I was off by 12 hours. I corrected it and, voila, all works well.
    I'm so happy now, because I can now get all the security extensions I've grown to love:
    - NoScript
    - Ghostery
    - Better Privacy
    - Adblock Plus
    You guys are great! Thank you so much for your help.

  • Iphone 4s has anyone had a problen with text messages not displaying

    has anyway had a problem with text messages not displaying?

    helplessmom,
    We want to make sure all of your messages show up for you! What issues are you having with them? Do they come to the phone at all? Is it only messages from certain people having issues or all?
    AndrewT_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the �Correct Answer� button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • Can you help with the code to publish Flash to my own domain.

    Thank you for your help, I publish the my site to my own domain, I do not use .Mac, I tested your code and ity works well on .Mac, can you help with the code to publish to my own domain.
    Thank you again

    You appear to have just collected a variety of code snippets and thrown them together, including a section of AS2 code ( gage.onRelease = function() {... )
    The suggestion I offered yesterday still stands.  You should find a tutorial regarding AS3 and the atan2 function.  Beyond that, what you show suggests this is a school assignment.  You should seek help from your fellow students and instructor if that is the case.

  • I need help with this code error "unreachable statement"

    the error_
    F:\Java\Projects\Tools.java:51: unreachable statement <-----------------------------------------------------------------------------------------------------------------THIS
    int index;
    ^
    F:\Java\Projects\Tools.java:71: missing return statement
    }//end delete method
    ^
    F:\Java\Projects\Tools.java:86: missing return statement
    }//end getrecod
    ^
    3 errors
    import java.util.*;
    import javax.swing.*;
    import java.awt.*;
    public class Tools//tool class
    private int numberOfToolItems;
    private ToolItems[] toolArray = new ToolItems[10];
    public Tools()//array of tool
    numberOfToolItems = 0;
    for(int i = 0; i < toolArray.length; i++)//for loop to create the array tools
    toolArray[i] = new ToolItems();
    }//end for loop
    }//end of array of tools
    public int search(int id)//search mehtod
    int index = 0;
    while (index < numberOfToolItems)//while and if loop search
    if(toolArray[index].getID() == id)
    return index;
    else
    index ++;
    }//en while and if loop
    return -1;
    }//end search method
    public int insert(int id, int numberInStock, int quality, double basePrice, String nm)//insert method
    if(numberOfToolItems >= toolArray.length)
    return 0;
    int index;
    index = search(id); <-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------HERE
    if (index == -1)
    toolArray[index].assign(id,numberInStock, quality, basePrice,nm);
    numberInStock ++;
    return 1;
    }//end if index
    }//end if toolitem array
    return -1;
    }//end insert method
    public int delete(/*int id*/)//delete method
    }//end delete method
    public void display()//display method
    for(int i = 0; i < numberOfToolItems; i++)
    //toolArray.display(g,y,x);
    }//end display method
    public String getRecord(int i)//get record method
    // return toolArray[i].getName()+ "ID: "+toolArray[i].getID()
    }//end getrecod
    }//end class
    Edited by: ladsoftware on Oct 9, 2009 6:08 AM
    Edited by: ladsoftware on Oct 9, 2009 6:09 AM
    Edited by: ladsoftware on Oct 9, 2009 6:10 AM
    Edited by: ladsoftware on Oct 9, 2009 6:11 AM

    ladsoftware wrote:
    Subject: Re: I need help with this code error "unreachable statement"
    F:\Java\Projects\Tools.java:51: unreachable statement <-----------------------------------------------------------------------------------------------------------------THIS
    int index;
    ^
    F:\Java\Projects\Tools.java:71: missing return statement
    }//end delete method
    ^
    F:\Java\Projects\Tools.java:86: missing return statement
    }//end getrecod
    ^
    3 errorsThe compiler is telling you exactly what the problems are:
    public int insert(int id, int numberInStock, int quality, double basePrice, String nm)//insert method
    if(numberOfToolItems >= toolArray.length)
    return 0; // <<== HERE you return, so everyting in the if block after this is unreachable
    int index;
    index = search(id);  //< -----------------------------------------------------------------------------------------------------------------HERE
    if (index == -1)
    toolArray[index].assign(id,numberInStock, quality, basePrice,nm);
    numberInStock ++;
    return 1;
    }//end if index
    }//end if toolitem array
    return -1;
    }//end insert method
    public int delete(/*int id*/)//delete method
    // <<== HERE where is the return statement?
    }//end delete method
    public String getRecord(int i)//get record method
    // return toolArray.getName()+ "ID: "+toolArray[i].getID() <<== HERE you commented out the return statement
    }//end getrecod
    }//end class

  • Need help with WMI code that will send output to db

    'm new to WMI code writing, so I need some help with writing code that we can store on our server. I want this code to run when a user logs into their computer
    and talks to our server. I also want the code to:
    * check the users computer and find all installed patches
    * the date the patches were installed
    * the serial number of the users computer
    * the computer name, os version, last boot up time, and mac address
    and then have all this output to a database file. At the command prompt I've tried:
    wmic qfe get description, hotfixid
    This does return the patch information I'm looking for, but how do I combine that line of code with:
    wmic os get version, csname, serialnumber, lastbootuptime
    and
    wmic nicconfig get macaddress
    and then get all this to output to a database file?

    Thank you for the links. I checked out http://technet.microsoft.com/en-us/scriptcenter/dd793612.aspx and
    found lots of good information. I also found a good command that will print information to a text file.
    Basically what I'm trying to do is retrieve a list of all installed updates (Windows updates and 3rd party updates). I do like that the below code because it gives me the KB numbers for the Windows updates. I need this information so my IT co-workers &
    I can keep track of which of our user computers need a patch/update installed and preferably which patch/update. The minimum we want to know is which patches / updates have been installed on which computer. If you wondering why we don't have Windows automatic
    updates enable, that's because we are not allowed to.   
    This is my code so far. 
    #if you want the computer name, use this command
    get-content env:computername
    $computer = get-content env:computername
    #list of installed patches
    Get-Hotfix -ComputerName $computer#create a text file listing this information
    Get-Hotfix > 'C:\users\little e\Documents\WMI help\PowerShell\printOutPatchList.txt'
    I know you don't want to tell me the code that will print this out to a database (regardless if it's Access or SQL), and that's find. But maybe you can tell me this. Is it possible to have the results of this sent to a database file or do I need to go into
    SQL and write code for SQL to go out and grab the data from an Excel file or txt file? If I'm understanding this stuff so far, then I suspect that it can be done both ways, but the code needs to be written correctly for this to happen. If it's true, then which
    way is best (code in PowerShell to send information to SQL or SQL go get the information from the text file or Excel file)?

  • IMessage only can send text with photo but not text only

    How come my iMessage can only sent text with photo but not text only. While entered text the send button is blue and gray.the button could become blue and white when only photo was being inserted. My iPad 2 iOS version 5.0.1.

    Went apple store today, everything is fine. Out of the store I have the same problem as disrobed above. Can anyone help?

  • Is it possible to make a search help with dynamic  selection table?

    Hi Experts,
    Is it possible to create search helps with dynamic seletion tables means
    i dont know the selection table names at the time of creation of search help.
    These tables will be determined at runtime.
    if yes, Please give an idea how to create and pass the table names at runtime.
    Thanks
    Yogesh Gupta

    Hi Yogesh,
    Create and fill your itab and show it with FM F4IF_INT_TABLE_VALUE_REQUEST
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          retfield        = 'field to return from itab'
          dynpprog        = sy-repid
          dynpnr          = sy-dynnr
          dynprofield     = 'field on your screen to be filled'
          stepl           = sy-stepl
          window_title    = 'some text'
          value_org       = 'S'
        TABLES
          value_tab       = itab
        EXCEPTIONS
          parameter_error = 1
          no_values_found = 2
          OTHERS          = 3.
    Darley

Maybe you are looking for