Comparing DateTime in Placeholders

Hi there,
I am using Query with PlaceHolders to compare dates. But its giving error as below
“Syntax error converting datetime from character string”
My query is,
Select fieldname from TableName where LastUpdated=’$Date$’
Here LastUpdated (say 2005-01-01 00:00:00.0) is SQL DateTime field and I am mapping Date (say 2005-01-01) sent from RFC in the Key parameter ‘Date’. I also tried by concatenating ‘ 00:00:00.0’ to the given ‘Date’.
Any help about this would be appreciated.Thanks.
Sagar

Try something along the lines of:
select *
from   your_table_name
where your_column_name between to_date('8/22/2013  8:24:28 AM', 'mm/dd/yyyy hh:mi:ss AM')
                                             and to_date('8/22/2013  8:44:28 AM', 'mm/dd/yyyy hh:mi:ss AM');
so, when you update, it'll be:
update your_table_name
set your_column_name = whatever_value_you_need_it_to_be
where your_column_name between to_date('8/22/2013  8:24:28 AM', 'mm/dd/yyyy hh:mi:ss AM')
                                             and to_date('8/22/2013  8:44:28 AM', 'mm/dd/yyyy hh:mi:ss AM');

Similar Messages

  • Comparing DateTime Ranges

    I am trying to figure out how to determine if one datetime
    range falls within another. I'm sure this is easy but I cannot
    figure it out. Example I have Range1Start as 7/19/2006 10:00 AM and
    Range1End as 7/19/2006 02:00PM. I want to determine that the range
    is within Range2Start 7/19/2006 8:00 AM and Range3End 7/19/2006
    05:00 PM. Is there a simple solution?

    Use the DateCompare( ) function twice. The first time,
    compare the two starting dates of each range,. The second time,
    compare the ending dates of each range.
    http://livedocs.macromedia.com/coldfusion/5.0/CFML_Reference/Functions55.htm#1102949
    should help you out.

  • XPath format-dateTime

    Hi,
    New in XPath.
    xp20:format-dateTime(string(2005-01-04)) <= xp20:format-dateTime(string(2005-01-05))
    This should be true, but it evaluation results false.
    What I´m doing wrong?
    Thanx

    You can use this functions as follows:
    <client:input>
    <xsl:value-of select="xp20:format-dateTime(/client:Sensors_JQProcessRequest/client:input,'[MM] [YYYY] [DD]')"/>
    </client:input>
    With input as - <input>2005-06-09T15:30:44.369</input>, you will get the output as <client:input>6 2005 9</client:input>
    But i dont think you can use this function for comparision, neither we have any xpath function for comparing datetime. You need to either write your own custom xpath function or you can use exec activity, write java code in that or use xp20:day-from-dateTime(), xp20:hours-from-dateTime(), xp20:year-from-dateTime(), xp20:minutes-from-dateTime(), xp20:seconds-from-dateTime() and compare them separately

  • Error While executing script task componnent

    Hi,
    I am using script task comp in  my package .script  written in script task comp
    ' Microsoft SQL Server Integration Services Script Task
    ' Write scripts using Microsoft Visual Basic
    ' The ScriptMain class is the entry point of the Script Task.
    Imports System
    Imports System.Data
    Imports System.Math
    Imports Microsoft.SqlServer.Dts.Runtime
    Imports System.IO
    Imports System.Collections
    Public Class clsCompareFileInfo
        Implements IComparer
        Public Function Compare(ByVal x As Object, ByVal y As Object) As Integer Implements IComparer.Compare
            Dim File1 As FileInfo
            Dim File2 As FileInfo
            File1 = DirectCast(x, FileInfo)
            File2 = DirectCast(y, FileInfo)
            Compare = DateTime.Compare(File1.LastWriteTime, File2.LastWriteTime)
        End Function
    End Class
    <System.AddIn.AddIn("ScriptMain", Version:="1.0", Publisher:="", Description:="")> _
    <System.CLSCompliantAttribute(False)> _
    Partial Public Class ScriptMain
        Inherits Microsoft.SqlServer.Dts.Tasks.ScriptTask.VSTARTScriptObjectModelBase
        Enum ScriptResults
            Success = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Success
            Failure = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Failure
        End Enum
        Public Sub Main()
            Dim dirinfo As DirectoryInfo
            Dim allFiles() As FileInfo
            dirinfo = New DirectoryInfo(Dts.Variables("gsLaddningsKatalogSokvag").Value.ToString)
            allFiles = dirinfo.GetFiles("*.txt")
            'Sortera filerna efter "senast ändrad" så den fil med äldst "ändrad datum" kommer att laddas först
            Array.Sort(allFiles, New clsCompareFileInfo)
            For Each fl As FileInfo In allFiles
                Dts.Variables("gsInFilNamnMedSokvag").Value = fl.FullName.ToString()
                Dts.Variables("gsInFilNamn").Value = Path.GetFileName(fl.FullName.ToString())
                Exit For
            Next
            Dts.TaskResult = ScriptResults.Success
        End Sub
    End Class
    Error which i ma getting while running..
    Error: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.ArgumentException: The path is not of a legal form.
       at System.IO.Path.NormalizePathFast(String path, Boolean fullCheck)
       at System.IO.Path.NormalizePath(String path, Boolean fullCheck)
       at System.IO.Path.GetFullPathInternal(String path)
       at System.IO.DirectoryInfo..ctor(String path)
       at ST_338efd96a3e940b0b489d5b5000f3397.vbproj.ScriptMain.Main()
       --- End of inner exception stack trace ---
       at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct& sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
       at System.RuntimeMethodHandle.InvokeMethodFast(Object target, Object[] arguments, Signature sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
       at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)
       at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
       at System.RuntimeType.InvokeMember(String name, BindingFlags bindingFlags, Binder binder, Object target, Object[] providedArgs, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParams)
       at System.Type.InvokeMember(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, CultureInfo culture)
       at Microsoft.SqlServer.Dts.Tasks.ScriptTask.VSTATaskScriptingEngine.ExecuteScript()
    Please help.I am using sql server 2008R2 and visual studio 2008 BIDS.

    Hi,
    I am using script task comp in  my package .script  written in script task comp
    ' Microsoft SQL Server Integration Services Script Task
    ' Write scripts using Microsoft Visual Basic
    ' The ScriptMain class is the entry point of the Script Task.
    Imports System
    Imports System.Data
    Imports System.Math
    Imports Microsoft.SqlServer.Dts.Runtime
    Imports System.IO
    Imports System.Collections
    Public Class clsCompareFileInfo
        Implements IComparer
        Public Function Compare(ByVal x As Object, ByVal y As Object) As Integer Implements IComparer.Compare
            Dim File1 As FileInfo
            Dim File2 As FileInfo
            File1 = DirectCast(x, FileInfo)
            File2 = DirectCast(y, FileInfo)
            Compare = DateTime.Compare(File1.LastWriteTime, File2.LastWriteTime)
        End Function
    End Class
    <System.AddIn.AddIn("ScriptMain", Version:="1.0", Publisher:="", Description:="")> _
    <System.CLSCompliantAttribute(False)> _
    Partial Public Class ScriptMain
        Inherits Microsoft.SqlServer.Dts.Tasks.ScriptTask.VSTARTScriptObjectModelBase
        Enum ScriptResults
            Success = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Success
            Failure = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Failure
        End Enum
        Public Sub Main()
            Dim dirinfo As DirectoryInfo
            Dim allFiles() As FileInfo
            dirinfo = New DirectoryInfo(Dts.Variables("gsLaddningsKatalogSokvag").Value.ToString)
            allFiles = dirinfo.GetFiles("*.txt")
            'Sortera filerna efter "senast ändrad" så den fil med äldst "ändrad datum" kommer att laddas först
            Array.Sort(allFiles, New clsCompareFileInfo)
            For Each fl As FileInfo In allFiles
                Dts.Variables("gsInFilNamnMedSokvag").Value = fl.FullName.ToString()
                Dts.Variables("gsInFilNamn").Value = Path.GetFileName(fl.FullName.ToString())
                Exit For
            Next
            Dts.TaskResult = ScriptResults.Success
        End Sub
    End Class
    Error which i ma getting while running..
    Error: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. --->
    System.ArgumentException: The path is not of a legal form.
    Hi SR_MCTS, 
    The error message how the path is not of a legal form, please take a look at the highlight content in above message. Please try to use the following code:
    dirinfo = new DirectoryInfo(Dts.Variables["User::Local_Dir"].Value.ToString)
    Please ensure you have configure the vaild path for "Local_Dir" variable. For more information, you can take a look at the following thread:
    http://social.msdn.microsoft.com/forums/sqlserver/en-US/f073ecef-37ed-4a4c-bee6-d9ef66ff471d/filesystem-task-issue-ssis
    Regards,
    Elvis Long
    TechNet Community Support

  • Linq Queries : Translate Local variable references

    Hello !
    I'm using the information from this MSDN Blog :
    http://blogs.msdn.com/b/mattwar/archive/2007/08/01/linq-building-an-iqueryable-provider-part-iii.aspx
    everything works very well except the case when I have a DateTime variable inside the query that I have to translate .
    This is my case :
    On my database I have the table orders where dt column have Date Type and store only the date.
    Now if I have this query :
    DateTime dt1 = Convert.ToDateTime("01/01/2012");
    var query = db.Orders.Where(c => c.dt == dt1);
    If I try to translate , the returned expression is :
    SELECT * FROM (SELECT * FROM Orders) AS T WHERE (dt = '01/01/2012 12:00:00 AM')
    As you can see the translated query contains the time at the end , and my query everytime return no records.
    What can I do that in translated query the value to be only the date without the time.?
    I try many variants , I format the variable only to date format , but it's the same thing.
    Thank you !

    the simpliest solution would be to use the Date-Portion of your DateTime-Object
    another Solution would be the ToString method like
    c.dt.ToString("MM.dd.YYYY") == dt1.ToString("MM.dd.YYYY")
    it may not be exactly like this... but you'll find the right toString method yourself. There is even a toString-Method wich you can pass a CultureInfo-object, but i found the best way for coparing Dates is to provide a const format-string that is used to
    compare DateTime-Types.
    To put in some extra suggar, you could try to override the DateTime-Equal-Operator-Implementation.

  • Why is there an offset when using DateConvert with DateCompare?

    I'm developing on my local server and my current timezone is GMT +11 hours.
    <cfset date1 = DateConvert("Local2UTC", now())>
    <cfset date2 = '2014-03-06'> <!--- (Tomorrow at time of writing) --->
    So, I was expecting that when I ran this code:
    #DateCompare(date1,date2,'d' )#
    that it would return a "-1" but it returned a "0" implying that the "day" was the same.
    So, to double check I output:
    DateConvert("Local2UTC", now())
    grabbed its displayed value : {ts '2014-03-05 07:08:58'} and inserted that for comparison thus:
    DateCompare("{ts '2014-03-05 07:08:58'}",date2,'d' ) and sure enough, it did return a "-1" reflecting that the day of date1 is indeed earlier than date 2.
    Further investigation showed that  I had to add my timezone difference to date2 in hours thus:
    <cfset date2 = '2014-03-06 11:00:00> to get
    #DateCompare(date1,date2,'d' )#
    to return a "-1".
    Is this a bug or am I misinterpreting??

    Hmmm, like with like and all other good practices aside, there is a bug. Also, like just about everyone else, I develop locally in one timezone +10 hours and run my sites remotely on a different timezone -5 hours, altogether a significant time difference. So after coming to understand how to deal with the bug I've come up with a way to compare dateTimes on the remote server, but it does require a spot of copying a string in where you've been advising not to.
    First, to the dateCompare() bug. To expose the bug we better use a finer increment than days, so instead of specifying, simply leave the “datepart” attribute empty so that it defaults to seconds. You say you’re in a +1hour timezone so try this.
    Presuming a local time of 16:00 on August 7th 2014
    <cfset date1 = DateConvert('local2Utc', now())>
    <cfdump var="#date1#"> should produce {ts '2014-08-07 15:00:00'}
    Now create a dateTime using CreateDateTime(2014,08,07,15,30,00) This time half way between your local dateTime and UTCDateTIme.
    <cfset date2 = CreateDateTime(2014,08,07,15,30,00)>
    Now compare them <cfdump var="# DateCompare(date1, date2 )#> in this example on your local server, you would expect to return a -1 since date1 is earlier, but in fact it will return a +1 because it seems to be somehow only looking at the now() time (later) instead of the UTC converted time. This is a bug, DateCompare should not care where it gets its data from it should simply get it and then compare the two values. Usually there is no problem using dateCompare but when used in conjunction with the DateConvert('local2Utc', now()) it ignores the value generated by the conversion. Anyway, so much for the bug, Now to the procedure that I’m using that requires copying a string.
    I’m wishing to compare a dateTime that I want something to stop being displayed on the remote server.
    <cfset myDate = CreateDateTime(2014,08,05,17,0,0)>
    <cfset myDateInUTC = DateAdd("s", GetTimeZoneInfo().UTCTotalOffset, myDate)>
    <cfdump var="#myDateInUTC#">
    This produces the string: {ts '2014-08-15 07:00:00'} .
    I then generate currentUTCDateTime from:
    <cfset currentUTCDateTime = DateAdd("s", GetTimeZoneInfo().UTCTotalOffset, now())>
    Both these dates are then compared thus:
    DateCompare(currentUTCDateTime, "{ts '2014-08-07 15:00:00'}" )
    I have to generate the string on my local server and then upload it which is why I’m unable to simply use a function. It’s a bit convoluted but it does work. Note that in this example I’m setting the currentUTCDateTime using DateAdd instead which doesn’t trip up like DateConvert.

  • CREATING A CODE WHICH GETS CONTENT FROM ACCESS DATABASE

    HI .I kindly ask you to help me to get a code in visual basic. The system keeps the START_DATE and END_DATE of several items in DataGridView of access databases . like if Start_date is today and end_ date
    is tomorrow but one,then If the end_date comes , should show a massage like "CONGZ!! TODAY IS YOUR BIRTHDAY". Thank u very much 
    [email protected]

    Hi Eustus Muhanguzi,
    for keeping your own privacy, please remove your email address from your message by clicking the "Edit" link above the message.
    I'm not sure if I understood your question correctly. Do you want to get this message at midnight at the transition from End_Date - 1 to End_Date?
    I suggest you add a Timer that ticks every second or every couple of seconds.  Whenever it ticks, compare DateTime.ToDay to End_Date.Date. You can do this in a loop processing all rows from the DataGridView (DGV). If the End_Date is reached, you have
    to remember that for this row the day has already been recognized as the birthday. You can do this in the same row or by keeping another List. After that, call MessageBox.Show to display the message.
    Please let us know if the DGV is data bound or unbound.
    It is not clear what happens if the program is not always running. If it is started at End_Date, midnight has already been passed.
    I do not see which role the Start_date plays in this comparison.
    Armin

  • How to compare two datetimes in BPEL?

    Hi, All,
    I need compare two datetimes in a switch activity, but can't find any function for it.
    My switch activity like this:
    case date1>date2:
    do something;
    otherwise:
    do something;
    There's no such function in "Date Functions" and can't find such function in xpath.
    BTY, there's no function to make a time duration(by minus one date from another?..so this back to the data compare issue ).
    Thanks.

    Hi,
    Logical function such as greater/less than function can be used to compare two dates as same as comapring two numbers.
    Ex: If your receive variables contains two data elements as date1 and date2 then you can use below format in switch condition.
    XpathXpression(date1) > XpathXpression(date2)
    hope it will help you.

  • Is it possible to compare two parameters type dateTime in switch- component

    Hello,
    i have a synchronouse prozess with one switch component. In the switch component i want to compare to parameters type dateTime. While execute the prozess alwayse the <otherwise>- sector is executed, but never the sector with the condition. But the condition is fulfilled.
    Can it be, that a comparison in a switch-component doesn't work while using two parameters with type dateTime?
    If it is so, has anybody an idea, how to compare two dateTimes without using the character dateTime?
    I'll be very happy about a helpfull advice.
    Thanks and regards,
    rala

    Hi Rala,
    this example works perfectly for me.
    IMHO doesn't matter how to assign values to dateTime variables.
    <scope name="Scope_timeDate">
    <variables>
    <variable name="aktCas" type="xsd:dateTime"/>
    <variable name="casDuration" type="xsd:dateTime"/>
    </variables>
    <sequence name="Sequence_1">
    <assign name="Assign_datesTimes">
    <copy>
    <from expression="xp20:current-dateTime()"/>
    <to variable="aktCas"/>
    </copy>
    <copy>
    <from expression='"2002-05-30T09:00:00"'/>
    <to variable="casDuration"/>
    </copy>
    <copy>
    <from expression="'before'"/>
    <to variable="rtn"/>
    </copy>
    </assign>
    <switch name="Switch_1">
    <case condition="bpws:getVariableData('aktCas') &gt; bpws:getVariableData('casDuration')">
    <assign name="Assign_ok">
    <copy>
    <from expression='"IF"'/>
    <to variable="rtn"/>
    </copy>
    </assign>
    </case>
    <otherwise>
    <assign name="Assign_otherwise">
    <copy>
    <from expression='"otherwise"'/>
    <to variable="rtn"/>
    </copy>
    </assign>
    </otherwise>
    </switch>
    </sequence>
    </scope>
    Regards,
    Ivan

  • Compare two dateTime with different timezone

    HI, All,
    I found a strange thing when compare two dateTime in BPEL;
    In my BPEL process, client passed a date time to the process , and the process compare the date time with current data time.
    1.client pass cutoffDate to process
    2. in a switch activity, I compare cutoffDate with current date. code:
    bpws:getVariableData('cutoffDate')<=xpath20:add-dayTimeDuration-to-dateTime()
    but seems this compare ignored the timezone information.
    For example:
    cutoffDate=2010-03-05T06:17:38.838+00:00
    currentDate=2010-03-05T14:10:38.838+08:00 this time =2010-03-05T06:10:38.838+00:00
    but cutoffDate<currentDate == true... seems it ignored the timezone info..
    This is a bug or I used a wrong compare function?
    Thanks.
    Edited by: Colin Song on Mar 5, 2010 3:28 PM

    Hi Colin,
    Please go through below link, there is topic about calculating difference between dates. Hope you find solution.
    http://blogs.oracle.com/reynolds/2007/07/19/
    Please let me know, if still not successful.
    Thx,

  • How to compare the datetime to find the latest datatime

    Hi,
    I have an xml payload with multiple fields for date-time. The datetime is populated as below:
    2007-04-06T10:46:47.411-05:04
    2007-04-06T10:46:47.410+02:01
    2007-04-06T10:46:47.411-03:00
    2007-04-06T10:46:47.411+09:03
    2007-04-06T10:46:47.411-09:03
    Now how do I find out which is the latest datetime. Any help is appreciated.
    Thanks

    Use SimpleDateFormat to parse those strings into java.util.Date objects.
    Date is Comparable, so stick them into a list or array, sort it, and grab the last one.
    Or just walk down the list, using Date's before() or after() method to see it the current element is before/after the next one.
    Calculating Java dates: Take the time to learn how to create and use dates
    Parsing
    a Date Using a Custom Format
    Making Java Objects Comparable
    http://java.sun.com/docs/books/tutorial/collections/interfaces/order.html
    http://www.javaworld.com/javaworld/jw-12-2002/jw-1227-sort.html

  • Comparing the time portion of datetime items on my form

    Hi. I'm attempting to compare some datetime items on my form. On my form these items are formatted as HH12:MIPM even though they contain a datetime value. I believe my IF statement is failing because the date portion of the datetime values is different.
         if :cc_call_lists.NBT_LOCALDATETIME between :nbt_best_call_tm_start and :NBT_BEST_CALL_TM_END thenIs there a way form me to make this comparison using only the time portion of the datetime value?
    So I need my IF statement to fire even when :cc_call_lists.NBT_LOCALDATETIME is 05/01/2013 02:00PM, and :nbt_best_call_tm_start is 05/15/2013 12:00PM and :NBT_BEST_CALL_TM_END is 05/15/2013 04:00PM.
    Any help would be greatly appreciated. Thanks.

    You have to eleminate the date-part for both items, maybe something like this:
    -- check if first time is smaller second time
    IF (:THEFIRSTDATE-TRUNC(:THEFIRSTDATE)) < (:THESECONDDATE-TRUNC(:THESECONDDATE)) THEN

  • SQL: comparing date with datetime field

    I'm having a brain fart as I assume this is really simple.
    Given that I have the date in the format of yyyy/mm/dd, how
    do I put that
    into a sql query that compares that to the datetime field?
    It appears the datetime field, by default, uses this format:
    m/d/yyyy
    hh:mm:ss am
    -Darrel

    If your date formats are different you will have to use CAST
    or CONVERT
    functions as you state you already have. If this works then
    stick with it.
    You may also need to use a SET DATEFORMAT command. See below:
    http://msdn2.microsoft.com/en-us/library/ms189491.aspx
    Dates in SQL Server can be a bit of a pain to work with. It
    is usually best
    practice to store your DateTime data in raw format and use
    CAST or CONVERT
    functions in your Stored Procs to get the correct results.
    Pat.
    "darrel" <[email protected]> wrote in message
    news:ftloim$jv4$[email protected]..
    >
    >> What dbms?
    >
    > t-sql (MSSQL)
    >
    > For now, via string functions, I rearrange the date/time
    format manually,
    > and then use the CAST statement in the SQL query. Not
    pretty, but seems to
    > work.
    >
    > -Darrel
    >

  • Mysql datetime datatype, from that datetime how can i compar only time part

    Hello i have database table in mysql, there is Datetime datatype column, from that datetime how can i compare only time part .....??
    Thanks in advance...

    Note you can't simply just compare time via equality however.
    Timestamp resolution is to the second or even milli-second. No user wants to match a time to an exact millisecond.
    What they want is something like a match by hour - for example returning the number of transactions that happened from 1pm to 2pm. Even that isn't completely correct because then you need to consider whether 1pm and/or 2pm is inclusive or exclusive. Normally one end will be inclusive and the other exclusive.
    So first you need to define what the period is.
    Then construct the range.
    Then pass the range and, as already mentioned, use specific functions to handle the extraction of the time.

  • Datetime Items - Comparing only the Time portion

    Hi. I have two Datetime items on my form and I need to only compare just the time portion (hh:miPM) of each against each other. None of the other date information is important to me in the comparison. Is there a way to compare just the time portion of each in an IF condition similar to what I have below? Any help would be greatly appreciated.
    For example:
    IF :induction_info.mf_time <> :induction_info.cbms_mf_time THEN
    ....

    You could covert the date-portion to a number like
    IF TO_NUMBER(TO_CHAR(:induction_info.mf_time, 'HH24MISS'))!=TO_NUMBER(TO_CHAR(:induction_info.cbms_mf_time, 'HH24MISS')) THEN
    ..If you just want to check for "unequal", you could even leave the TO_NUMBER-part

Maybe you are looking for

  • Aperture won't open

    I just bought Aperture on the App Store, and it won't open. I get this error when I try to open it. Any suggestions? I've tried restarting my iMac. Here is the crash report. Process:         Aperture [2090] Path:            /Applications/Aperture.app

  • Can you move a video taken on the iPad from the camera roll to 'Videos' without syncing through iPhoto?

    Pretty simple question that I can not figure out the answer to. Can you move a video taken on the iPad from the camera roll to 'videos' on the go?

  • My embedded style is not over riding my external style?

    I have an external style of #mainContent h1, text align center.  Then I did the same rule except embedded it in the document and changed the text align to left, but it the text stays centered.  Any ideas?  Thanks.

  • Character Formating in Smartforms

    Dear All, How to use Condense and Right Alignment for a same variable, for example &test& is my variable, i need to use (C) and (R) for this variable. I tried to give right alignment through smart styles also. But that is giving some space in the rig

  • IE 7 mutilates my markup ...

    In IE7 I use their bastardized version of a developers toolbar... when I "view->original source" of my page I get: <DIV class="box_attach" id="box_register" style="DISPLAY: none; LEFT: 75px; POSITION: absolute; TOP: -150px" oldblock="block"></DIV> Wh