Strange blanks

hi!
i have a strange problem. if i read from mysql ( datatype TEXT ) and write it into a textarea ( html ), there are a tab and two blanks inserted before the text?! if i store again, they add up to two tabs and four blanks.....ect.
but if i take the same text and make the output ordinary inside a table ( and then it�s not editable ), it works fine.
can anybody help me, please?
greetings

this was my format.
<textarea name="problem" rows=8 cols=34>
<%=sEntries[6]%>
</textarea>
you where right...thx
i changed code to
<textarea name="problem" rows=8 cols=34>
<%=sEntries[6]%></textarea>(in 1 row)
now it works !
nice greetings

Similar Messages

  • Strange blank disk mounting pop-ups on Finder

    Hi,
    Lately, i've been getting strange blank pop-ups in Finder with just title of the windows being Google Chrome or Adobe Flash Player (after i uninstalled Google Chrome and started using Safari).
    When i check Disk Utility, i can see that a Google Chrome disk image is mounted or Adobe Flash Player disk image mounted (as the case may be).  I've also been having problems with installing Adobe Flash Player 11.  It gives me a no mountable disk system error even though i've tried downloading the file many times and am quite sure its not a problem with the .dmg
    I have a late 2012 Mac Mini running 10.8.2 OSX on a Fusion Drive that i created on my own with the stock Apple 1TB HDD and a 256GB Samsung Pro 840 SSD.  I've migrated my apps and data from a 2007 Macbook running Snow Leopard.
    Anyone has any ideas on what could have gone wrong?
    Thanks!

    Bootup holding CMD+r, or the Option/alt key to boot from the Restore partition & use Disk Utility from there to Repair the Disk, then Repair Permissions.
    One way to test is to Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, Test for problem in Safe Mode...
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive
    Reboot, test again.
    If it only does it in Regular Boot, then it could be some hardware problem like Video card, (Quartz is turned off in Safe Mode), or Airport, or some USB or Firewire device, or 3rd party add-on, Check System Preferences>Accounts (Users & Groups in later OSX versions)>Login Items window to see if it or something relevant is listed.
    Check the System Preferences>Other Row, for 3rd party Pref Panes.
    Also look in these if they exist, some are invisible...
    /private/var/run/StartupItems
    /Library/StartupItems
    /System/Library/StartupItems
    /System/Library/LaunchDaemons
    /Library/LaunchDaemons

  • Strange blank characters

    Hi,
    I am facing strange behaviors with some string manipulations:
    I have two string variables <i>hh</i> and <i>mmss</i>.
    Content of <i>hh='16'</i> <i>mmss='0000'</i>
    Then I call :
    <b>CONCATENATE hh mmss INTO hhmmss.</b>
    At that point, <i>hhmmss='16 0000'</i>
    It should be <i>'160000'</i>. Why such a strange thing ?
    I also tried <b>CONCATENATE hh mmss INTO hhmmss SEPARATED BY ''.</b> but I have the same hhmmsss which contains something like a blank character.
    <b>CONDENSE hhmmss.</b> cannot remove that character.
    (The purpose of this manipulation is to format a date string assigned then to a d type variable).
    Any suggestion ?
    Sincerely,
    Olivier Matt

    hi,
    <b>CONDENSE lv_string NO-GAPS .</b>
    <b>or</b>
    lv_char2   type char2,
    lv_char2   type char4,
    lv_string  type string.
    lv_char2 = lv_hh_variable.
    lv_char4 = lv_mmss_variable.
    concatenate lv_char2 lv_char4 into lv_string.
    this will remove strange char form the string.
    <b>Please Reward Points & Mark Helpful Answers</b>
    To mark Helpful Answers ;click radio Button next to the post.
    RadioButtons
    <b>o</b> Helpful Answer
    <b>o</b> Very helpful Answer
    <b>o</b> Problem Solved.
    Click any of the above button next to the post; as per the anwers
    <b>To close the thread; Click Probelm solved Radio Button next to the post , which u feel is best possible answers</b>

  • Strange Blank Services Page with a "Cancel" button

    Hi All!
    For some strange reason my Cisco IP Phone's "Services" button is associated, as default, to a blanck page with a single "Cancel" button as the 3rd softkey. For example, if I push the "Services" button, this default pag will be shown first and seconds later, the page I specified in Call Manager as associated to the "Services" button.
    Usually this is not a problem, only that when I try to push a CiscoIPPhoneImageFile object to the phone, in the 2-3 second while the phone is downloading the image, this blank page will be shown and it stays there untill the image is fully downloaded. It is especially annoying as my ImageFile object has a 3rd softkey button called "Exit", so the user will witness a button first appeared as "Cancel", and then suddenly changes to "Exit"!
    Any one know how do I remove this strange "default" blank page, or at least change its "Cancel" button to whatever I prefer? Thank you very much for your help!

    Could it be that on the phone you're using, you have signed up for a service that turns the service list into something the phone cannot handle (e.g. the application name is too long)? The empty page with a cancel suspciously reminds me of what you get when the phone chokes on an xml element.

  • Strange: blank in string. Anybody can explain this?

    Hello!
    Look at this. Until now I thougt, I had understood ABAP...
    Output of the following programm:
    1) Strange
    2) Strange
    3) Strange
    4) Strange
    5) Strange
    6) Strange
    Very strange, isn't it?
    ABAPDOCU tells, that strings pay attention to blanks.
    Can anybody explain this?
    REPORT zstrange.
    DATA: stringwithspace TYPE string VALUE 'A B',
          teststring TYPE string,
          blankstring TYPE string VALUE ' ',
          l type i.
    START-OF-SELECTION.
      IF stringwithspace+1(1) = ' '.
        WRITE: / '1) My guess'.
      ELSE.
        WRITE: / '1) Strange'.
      ENDIF.
      IF stringwithspace+1(1) = blankstring.
        WRITE: / '2) guess'.
      ELSE.
        WRITE: / '2) Strange'.
      ENDIF.
      IF stringwithspace+1(1) = ''.
        WRITE: / '3) guess'.
      ELSE.
        WRITE: / '3) Strange'.
      ENDIF.
      teststring = stringwithspace+1(1).
      IF teststring = ' '.
        WRITE: / '4) Guess'.
      ELSE.
        WRITE: / '4) Strange'.
      ENDIF.
      IF teststring = blankstring.
        WRITE: / '5) Guess'.
      ELSE.
        WRITE: / '5) Strange'.
      ENDIF.
      IF teststring = ''.
        WRITE: / '6) guess'.
      ELSE.
        WRITE: / '6) Strange'.
      ENDIF.

    No, thats not strange.
    c variables have always a fixed length, it can not contain "nothing". If there are only spaces in, the c variable is treated as empty/initial.
    Strings can contain nothing, and they can contain spaces. A string containing blanks is not interpreted as empty/initial.
          blankstring TYPE string VALUE ' ',
    What you are doing here is assigning an empty string to the string var blankstring, it does NOT contain a blank.
    Constants encapsulated with apostrophes are treated as c variables. But: constants encapsulated within back quotes will be interpreted as string. Change your code to
          blankstring TYPE string VALUE ` `,
    Take care of that i used back quotes now, not apostrophes, Now the var blankstring contains a blank and the result in that case will change to MY guess.
    Similar the camparison
      IF stringwithspace+1(1) = ' '.
    This is comparing a blank with an empty char and thats why you are getting strange.
    Change this to
      IF stringwithspace+1(1) = ` `.
    and you will get My guess cause now you are comparing a blank with a blank and not a blank with an empty string.
    Hope its now clear.

  • Strange Blank Users in FIle Sharing?

    Does anyone know why I have 2 completely blank users in my file sharing when I click on Options? I was looking over the threads here and didn't see anything similar, but that doesn't mean I didn't miss something when I was searching.
    Thanks in advance,
    Greg

    Here's what I would do. Remove all those shared folders, but leave "File Sharing" turned on. If you want other people to have access to your Public folder, leave Public in that shared list - otherwise, feel free to remove it.
    Now, you will only be able to access the computer using what I would call "normal" shares. This means that, if you are an authorized user of the computer, you can connect from another networked computer (using the Finder sidebar in 10.5, or the Network in 10.4 or earlier), but you will have to enter your login name and password. Once you've done that, you have access to your entire home folder - including docs, music, etc. Additionally, if you're an administrator user (ie, if you're set to "Admin" in System Preference - if you're the only user there, you will be), you will have access to the whole hard drive.
    Nobody else will have any network access to your computer with this configuration, but keep that password safe and secure. And, of course, be aware of physical security - don't leave your computer unattended (use the "require password when waking from sleep or screensaver" in Security is a good thing to do).
    Matt

  • Strange blank, transparent window appearing

    I just made the transition from using GNOME to using KDE. I installed a fresh x86_64 install, and installed KDE on it. I updated all the packages with pacman -Syu. Once I logged out and logged back in, I had a very peculiar thing happen. A rather large, transparent window appeared. There is nothing inside it, and it has a black shadowed border around it. There is no way that I have found so far to remove it, even with a reboot or relog. I've also tried killing the X server, to no avail. If it helps, the window is in the upper left-hand corner of the screen and takes up about 75% of my total screen real-estate. Does anyone know how to remove this? I'm a complete noob to KDE, so I really have no idea if it's supposed to be there or not, and how to remove it.

    https://bbs.archlinux.org/viewtopic.php?id=106273

  • A215 Strange Blank Screen Issue......

    A215
    Wouldn't boot, reset by removing batt, unplugging X 30 secs
    Lights worked after, pressed fn+F5 got boot, splash for toshi garfed saying that nno hd.
    Bios upgraded 1.30-2.0 left alone, came back, got gui, logged in no worries.
    Did a restart, no screen...will look at ribbon cable, due to correct noises on boot.
    While I do this, is there ant other considerations?

    Please reseat memory, if problem still occurred you might consider purchase new motherboard or send to Toshiba Services Center for repair motherboard.  Most of Repair Service Center do the components repair (reflow northbrigde chipset) to resolved problem.  The motherboard repair usually cheaper than replaced new motherboard.
    Good luck.

  • Blank Screen Flash at Preview & Publish

    After capturing "live video" for my captivate 3
    project I encountered strange blank screen flashes in between the
    slides. I called tech support and they gave the following guidance:
    - be sure the file is less than 50 MB (if not split into
    multiple projects and link them in branching tab)
    - Add a blank slide at the end or middle of the project and
    set the duration to the shortest time (~.1 sec)
    - re-save and then review to see if the blank screen remains
    in the project
    If the blank screen remains they suggested creating a new
    project and then linking to that new project from the branching
    tab.
    I'll post a follow-up once I run some of these recommended
    methods.
    Brad

    Hi Brad
    Usually the "flash" happens because each slide has been
    recorded as a full motion slide. One way around this is to grab a
    screen capture of your slide as it ends. Then set that as the
    background image.
    You might also want try configuring the background color of
    the slides as dark or medium gray. Typically the background color
    is white. This can make it really noticable when the transitions
    occur between slides. To do that, you examine the properties of the
    slide and configure the background color there.
    Cheers... Rick

  • IPod Classic displays blank event reminder, click causes restart

    I have an iPod Classic that I've had for about a year now. I've restored it twice now, but I'm still seeing this error. Periodically, a blank event reminder will pop-up on the screen with no name, but with the option to snooze or clear the reminder. When I click the wheel to select either option to clear the reminder, the iPod instantly restarts.
    Anyone else have this happen to their iPod? Any ideas what causes it or how I could get it to stop?
    I've been wondering if it could be related to having three computers (work: 10.4.11, home: 10.6.1, other home computer:10.5.9), an iphone and my ipod all sync-ed together with MobileMe. The OS variations seem to generate a lot of problems with duplicate entries and sync update notifications between computers and I'm wondering if maybe something in there is causing these strange blank notifications to go to my iPod.
    However, I don't get blank event notifications on my computers or on my iPhone...so I'm not sure my half-baked idea has anything to do with it.
    I don't know how many more times I need to restore this iPod... anyone have an idea, or should I just take it in (even though I can't force demonstrate this error to a genius bar employee...)
    Thanks!
    -M

    I've been having the same exact problem since I've had my iPod Classic 80 GB (about 1 1/2 years). Not sure why either, I've looked for forums discussing the problem but have found nothing. I assumed the issue would've been fixed with an update, but I guess not.

  • DataGrid ItemRender and font family

    i am writing a custom data grid ItemRender that, for every
    cell, displays a numeric value. Additionally, if the xml data
    structure defines an attribute for a given row, it is supposed to
    display a colored arrow in the same cell.
    Reading the data and determining if to display the arrow, and
    the color of the arrow work fine. I am trying to embed the
    windgings font to display the arrow, that way I can set the color
    programatically. As I said, reading the data works fine, the
    coloring of the 'arrow' works fine. My problem is I cannot change
    the fontFamily of any label in the item renderer. Even the entire
    renderer itself. Below is my code, followed by several other things
    I have tried. Thanks for the help.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:HBox xmlns:mx="
    http://www.adobe.com/2006/mxml"
    width="100%" height="100%"
    implements="mx.controls.listClasses.IDropInListItemRenderer"
    horizontalScrollPolicy="off" verticalScrollPolicy="off">
    <mx:Style>
    @font-face
    src: local("wingdings");
    fontFamily: myArrowFont;
    font-anti-alias-type: advanced;
    font-weight: bold;
    .arrowStyle
    fontFamily: myArrowFont;
    font-weight: bold;
    font-size: 12;
    </mx:Style>
    <mx:Script>
    <![CDATA[
    import mx.controls.listClasses.BaseListData;
    import mx.controls.dataGridClasses.DataGridListData;
    protected var _listData:DataGridListData;
    public function get listData():BaseListData
    return _listData;
    public function set listData(value:BaseListData):void
    _listData = DataGridListData(value);
    invalidateProperties();
    override public function set data(value:Object):void
    super.data = value;
    cellArrow.setStyle('color',value[_listData.dataField].@color);
    switch(value[_listData.dataField][email protected]())
    case 'up':
    cellArrow.text = 'é';
    break;
    case 'down':
    cellArrow.text = 'ê';
    break;
    case 'equal':
    cellArrow.text = 'd';
    break;
    default:
    cellArrow.text = '';
    break;
    cellText.text = value[_listData.dataField];
    ]]>
    </mx:Script>
    <mx:Label id="cellText" text=""/>
    <mx:Spacer width="100%"/>
    <mx:Label id="cellArrow" styleName="arrowStyle"
    text=""/>
    </mx:HBox>
    I have tried using <mx:Label id="cellArrow"
    fontFamily='myArrowFont'/>
    I have set the fontFamily='myArrowFont' in the base HBox tag
    as well, and it doesn't change the font of either the cellArrow or
    cellText label.
    I have also used
    cellArrow.setStyle('fontFamily','myArrowFont') in the override set
    data method.
    I have written the same component in ActionScript
    implementing the same functionality.
    The cellArrow label's text and color are set correctly to the
    data, however I cannot get the font to change to windgings.
    I have tried setting the DataGridColumn fontFamily to the
    wingdings font, and all it does is change the header text of the
    column, not any of the rows.
    The actual datagrid is created entirely in actionscript,
    because it is part of a control that will build a datagrid with X
    number of columns, defined in a data structure. That code works
    fine as well, and is below, incase it helps.
    //_dataP is an XMLList from an httpservice or web service
    that defines our grids
    var colsX:XMLList = _dataP..column; //get an xmllist of our
    columns
    var len:int = colsX.length(); //and store the length
    var cols:Array = new Array(); //create an empty array to hold
    each column
    var col:DataGridColumn; //a data grid column reference
    for(var i:int = 0; i < len; i++)
    col = new DataGridColumn(); //create a new column
    col.headerText = colsX
    .@text; //set the header text
    col.dataField = colsX.@field; //and data field
    col.itemRenderer = new ClassFactory(quadBoxItemRenderer);
    cols.push(col); //add it to the array
    _grid.columns = cols; //set our columns array as the columns
    of the grid
    var rows:XMLList = _dataP..row;
    _grid.rowCount = (rows.length() == 0) ? 1 : rows.length();
    _grid.dataProvider = rows; //and give it the list of rows
    _grid.percentWidth = 100;
    _gridBox.addChild(_grid);
    any help is vastly appreciated. Thanks.

    Disregard my question - I've unfortunately failed to check the font-family string as submitted by the server and it turned out to still have a colon character in front of it...
    I guess I've spent a few too many nights working on this making me susceptible to tiredness and a strangely blank mind...
    My apologies,
    Rogier

  • CS4 products adding required Startup items to MSCONFIG

    Adobe CS products for Windows install several items in the Startup tab in MSCONIG. As a rule, Startup items are unnecessary and take up RAM and other resources. Until I installed the CS products I had no items checked in the Startup tab which meant my PC started up (and shut down) quickly and only the bare minimum of standard Windows OS programs were running in the background. The Adobe CS install added five items: CS4ServiceManager, AdobeCollabSync, a blank line with no Startup Item name or Command line text (I have submitted a general forum query about that line), Acrotray, Acrobat_sl and Reader_sl. In previous installs Adobe added Adobe Acrobat Speed Launcher, Adobe Gamma, Adobe Reader Speed Launcher, and Adobe Reader Synchronizer.
    I would prefer that Adobe not add anything to my Startup tab. I don't want any unnecessary programs running in the background. And I don't want any company forcing me to run programs in the background. Note: If you uncheck CS4ServiceManager, AdobeCollabSync or that strange blank line, Adobe CS products will not run. Instead, they will start, an error message (148:3) will appear, and the programs will close.
    With this surreptitious Startup program installation, I get the sense that "Big Brother" is watching. Since no other company that I'm aware of adds items to the Startup list that are REQUIRED to run their software, I'm sure Adobe can change it's install routine to not add items to the Startup clutter.
    Jeff Sengstack

    This is a user 2 user forum. You are speaking to fellow users. If you want to speak to Adobe:
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • Equium M50-216 - need info about display connection

    I've had no problems with the system before, but about a week ago I started experiencing display problems.
    Basically, the display occasionally freezes or behaves strangely - blanking, interference etc. This is related to moving the screen - fiddling with it puts things right.
    My guess is that this is nothing more serious than a loose cable connection somewhere - because the problem doesn't occur spontaneously, but can be triggered if I move the screen, opening or closing it slightly.
    Is there a straightforward way to get access to the cable (?) connecting the display panel to the graphics card?
    Many thanks

    >My guess is that this is nothing more serious than a loose cable connection somewhere - because the problem doesn't occur spontaneously, but can be triggered if I move the screen, opening or closing it slightly. Is there a straightforward way to get access to the cable (?) connecting the display panel to the graphics card?
    Do you have M50 notebook experience?
    I assume you dont have it because you ask it here in the forum. In such case you dont know exactly how to disassemble the notebook and this is not very easy and very tricky!
    Using a wrong order can damage some parts in worst case the display will not function.
    Is the warranty valid? If yes then you shouldnt try to disassemble the notebook by yourself because this would cancel the warranty.
    Furthermore you are not 100% sure that the loose cable connection causes this issue. You guess only and in my opinion its not enough to perform the notebook disassembling!
    I will provide you a good advice; Contact a notebook specialist!
    In such case you are on the safe side

  • WCF-SQL xmlpolling issue

    I have an issue with the xml im getting back from biztalk using a wcf-sql adapter.
    Im getting a strange blank namespace on a child element.
    <ShippedPackages xmlns="http://Correct.Schema">
    <Package xmlns="">
    <SALESORG>4000</SALESORG>
    <SOLDTO>5111632</SOLDTO>
    <PICKUP>5314125</PICKUP>
    <SOURCE>14</SOURCE>.....
    Im getting this blank namespace in <package>
    here are my settings for the receive location
    the receive pipeline is 'XMLreceive'
    XmlStoredProcedureRootNodeName - ShippedPackages
    XmlStoredProcedureRootNodeNamespace - http://Correct.Schema
    inbound operation type is xmlpolling
    PolledDataAvailableStatement - SELECT COUNT(*) as count FROM [Shopping].[dbo].[VW_DHLGMPartner_ShippedPackages]
    Pollingstatement - SELECT * FROM [Shopping].[dbo].[VW_DHLGMPartner_ShippedPackages] AS Package
    FOR XML AUTO, ELEMENTS
    Any ideas would be great
    Thanks

    Hi,
    Please follow the blog ->
    All about Legacy SQL Adapter and migrating it to WCF SQL Adapter
    Snippet from the blog which says:
    Issue
    Records fetched by WCF Sql Adapter have blank XMLNS with every record unlike the legacy Sql Adapter where there are no such blank namespaces coming
    along. This results in validation failure wherever the polled schema is being used as a SOURCE SCHEMA.
    Resolution
    Additionally following 2 changes need to be made: 
    Need to feed in the "PolledDataAvailableStatement" as it is a mandatory field before the polling operation could start.
    Marked "UseAmbientTransactions" as false to eliminate the error.
    For the blank namespace problems - the
    ElementFormDefault property needs to be set to 'False'.
    Rachit
    Please mark as answer or vote as helpful if my reply does

  • New tbolt, all kinds of quirks

    I had a MOTO Droid, first edition, for 14 months and made it work so I feel like I am pretty open minded. But this...this is strange.  I loaded my couple of apps that I used on my Droid.  No problems.  But I wonder about email since that I what I use it for most.  I turned my phone on this morning.  No email notices.  I got onto the internet from my laptop, I had like 15 emails on 2 different accounts.  Anyway, after over an HOUR, I get a notice on the phone that I have email.  I wonder why?  I haven't changed my notification times so it is set for 15 min polling.  Then I set up a new user account for this forum and I went to look for the email from my phone, same thing, no notification and when I refreshed, it did come up.  But when I went to open the email, it is blank!  From my laptop I can see the contents.  Other email show up with contents.  What gives? 
    There are also a lot of times when I can't get to the internet for whatever reason and I never, ever had a problem with my Moto Droid.  What about that?  Is it because I can't get to the 4G?Right now I look at my phone and it says 3G but there are no bars.  Does that mean it is on the 1G or that is just isn't working without being on my home network?
    I don't want to take this thing back but it is very odd.

    Does other people know these things and I just have to find out the hard way?  Apparently either there is no more *228 or it doesn't work with the Tbolt.  The lack of call consistency/quality is a "known issue". 
    My strange blank email from Verizon (it wasn't blank when viewed from my laptop) was declared a "glitch" that I should take up with "technical support" when I went to the Verizon store today.  They said, glitches change, sometimes go away, sometimes don't and you learn what works to work around them.  Yes, that's what the guy said  and I laughed.  He said there was nothing wrong with my phone so he couldn't take it back as defective.  Just "glitchy".  I had to laugh again.  I said, I have two degrees in engineering and I know what a glitch is - it means it isn't working correctly. (I called it a bug and he said it wasn't a bug)
    Anyway, I am going to call "technical support" tomorrow and see what cute sayings they can come up with.  Not sure if I can keep this phone at this rate. 

Maybe you are looking for

  • ITunes 10.6.1.7: "iTunes cannot run because some of its required files are missing. Please reinstall iTunes." ?

    Fakt: iTunes 10.6.1.7 Fehlermeldung: "iTunes cannot run because some of its required files are missing. Please reinstall iTunes." Jeder Versuch iTunes zu starten war bisher vergeblich: unter anderem auch das Vorgehen nach Artikel HT1925 der knowledge

  • Custom Swatch Palette (beta)

    Hi yall, I created this custom swatch palette which allows a person to keep swatch info in this palette and instantiate it in documents.  The palette can store notes about a particular swatch and there is a save button somewhere which will save your

  • IMac black screen

    When I turn my computer on, I get the apple as usual.  Once that process is complete, the screen goes black.  Any suggestions would be helpful.

  • How long does Oleophobic Screen last?

    I just bought a new 3GS phone for 2 days. I discover that the screen is free from finger prints whereas the black rear case is full of finger prints. It seems the new oleophobic coating is really workable. I have not bought any screen protector yet b

  • Customer response solution password

    Hello , I want  to learn how can  we recovery customer response solution password, Thanks  a lot,