<?xml version="1.0" encoding="windows-1252"?><rss version="0.91" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Blog</title><link>http://www.misistemaweb.com/dblog/</link>
<description>Blog</description><language>it</language>
<item>
	<title><![CDATA[Encriptar - Desencriptar]]></title>
	<description><![CDATA[<textarea cols="50" rows="5">

Encode/Decode - Two routines for ASP encryption

' These two VBScript routines can be use to encrypt data passed on the 
' querystring, 
' so that users can't decode what is being passed between ASP pages.
' USE: sField = Decode(request.querystring(encode("sParm")))
Function Decode(sIn)
dim x, y, abfrom, abto
Decode="": ABFrom = ""
For x = 0 To 25: ABFrom = ABFrom &amp; Chr(65 + x): Next
For x = 0 To 25: ABFrom = ABFrom &amp; Chr(97 + x): Next
For x = 0 To 9: ABFrom = ABFrom &amp; CStr(x): Next
abto = Mid(abfrom, 14, Len(abfrom) - 13) &amp; Left(abfrom, 13)
For x=1 to Len(sin): y=InStr(abto, Mid(sin, x, 1))
If y = 0 then
Decode = Decode &amp; Mid(sin, x, 1)
Else
Decode = Decode &amp; Mid(abfrom, y, 1)
End If
Next
End Function
' USE: location.href="nextpage.asp?" &amp; encode("sParm=" &amp; sData)
Function Encode(sIn)
dim x, y, abfrom, abto
Encode="": ABFrom = ""
For x = 0 To 25: ABFrom = ABFrom &amp; Chr(65 + x): Next
For x = 0 To 25: ABFrom = ABFrom &amp; Chr(97 + x): Next
For x = 0 To 9: ABFrom = ABFrom &amp; CStr(x): Next
abto = Mid(abfrom, 14, Len(abfrom) - 13) &amp; Left(abfrom, 13)
For x=1 to Len(sin): y = InStr(abfrom, Mid(sin, x, 1))
If y = 0 Then
Encode = Encode &amp; Mid(sin, x, 1)
Else
Encode = Encode &amp; Mid(abto, y, 1)
End If
Next
End Function 
</textarea>]]></description>
	<link><![CDATA[http://www.misistemaweb.com/dblog/articolo.asp?articolo=32]]></link>
	<guid isPermaLink="true">http://www.misistemaweb.com/dblog/articolo.asp?articolo=32</guid>
	<dc:date>2012-05-02T09:05:43+01:00</dc:date>
	<dc:creator>Admin</dc:creator>
</item>
<item>
	<title><![CDATA[Funciones en VBScript]]></title>
	<description><![CDATA[<table>
  <tbody>
    <tr>
      <th>Function</th>
      <th>Description</th>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_cdate.asp">CDate</a></td>
      <td valign="top">Converts a valid date and time expression to the variant of       subtype Date</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_date.asp">Date</a></td>
      <td valign="top">Returns the current system date</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_dateadd.asp">DateAdd</a></td>
      <td valign="top">Returns a date to which a specified time interval has been       added</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_datediff.asp">DateDiff</a></td>
      <td valign="top">Returns the number of intervals between two dates</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_datepart.asp">DatePart</a></td>
      <td valign="top">Returns the specified part of a given date</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_dateserial.asp">DateSerial</a></td>
      <td valign="top">Returns the date for a specified year,       month, and day</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_datevalue.asp">DateValue</a></td>
      <td valign="top">Returns a date</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_day.asp">Day</a></td>
      <td valign="top">Returns a number  that represents the day       of the month (between 1 and 31, inclusive)</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_formatdatetime.asp">FormatDateTime</a></td>
      <td valign="top">Returns an expression formatted as a date or time</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_hour.asp">Hour</a></td>
      <td valign="top">Returns a number that       represents the hour of the day (between 0 and 23, inclusive)</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_isdate.asp">IsDate</a></td>
      <td valign="top">Returns a Boolean value that indicates if the evaluated       expression can be converted to a date</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_minute.asp">Minute</a></td>
      <td valign="top">Returns a number that       represents the minute of the hour (between 0 and 59, inclusive)</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_month.asp">Month</a></td>
      <td valign="top">Returns a number  that       represents the month of the year (between 1 and 12, inclusive)</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_monthname.asp">MonthName</a></td>
      <td valign="top">Returns the name of a specified month</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_now.asp">Now</a></td>
      <td valign="top">Returns the current system date and time</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_second.asp">Second</a></td>
      <td valign="top">Returns a number that       represents the second of the minute (between 0 and 59, inclusive)</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_time.asp">Time</a></td>
      <td valign="top">Returns the current       system time</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_timer.asp">Timer</a></td>
      <td valign="top">Returns the number of seconds since 12:00       AM</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_timeserial.asp">TimeSerial</a></td>
      <td valign="top">Returns the time for a       specific hour, minute, and second</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_timevalue.asp">TimeValue</a></td>
      <td valign="top">Returns a time</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_weekday.asp">Weekday</a></td>
      <td valign="top">Returns a number that represents the day of the week       (between 1 and 7, inclusive)</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_weekdayname.asp">WeekdayName</a></td>
      <td valign="top">Returns the weekday name of a specified day of the week</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_year.asp">Year</a></td>
      <td valign="top">Returns a number that represents the year</td>
    </tr>
  </tbody>
</table>
<br />
<h2>Conversion Functions</h2>
<table>
  <tbody>
    <tr>
      <th>Function</th>
      <th>Description</th>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_asc.asp">Asc</a></td>
      <td valign="top">Converts the first letter in a string to ANSI code</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_cbool.asp">CBool</a></td>
      <td valign="top">Converts an expression to a variant of subtype Boolean</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_cbyte.asp">CByte</a></td>
      <td valign="top">Converts an expression to a variant of subtype Byte</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_ccur.asp">CCur</a></td>
      <td valign="top">Converts an expression to a variant of subtype Currency</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_cdate.asp">CDate</a></td>
      <td valign="top">Converts a valid date and time expression to the variant of       subtype Date</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_cdbl.asp">CDbl</a></td>
      <td valign="top">Converts an expression to a variant of subtype Double</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_chr.asp">Chr</a></td>
      <td valign="top">Converts the specified ANSI code to a character</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_cint.asp">CInt</a></td>
      <td valign="top">Converts an expression to a variant of subtype Integer</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_clng.asp">CLng</a></td>
      <td valign="top">Converts an expression to a variant of subtype Long</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_csng.asp">CSng</a></td>
      <td valign="top">Converts an expression to a variant of subtype Single</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_cstr.asp">CStr</a></td>
      <td valign="top">Converts an expression to a variant of subtype String</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_hex.asp">Hex</a></td>
      <td valign="top">Returns the hexadecimal value of a specified number</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_oct.asp">Oct</a></td>
      <td valign="top">Returns the octal value of a specified number</td>
    </tr>
  </tbody>
</table>
<br />
<h2>Format Functions</h2>
<table>
  <tbody>
    <tr>
      <th>Function</th>
      <th>Description</th>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_formatcurrency.asp">FormatCurrency</a></td>
      <td valign="top">Returns an expression formatted as a currency value</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_formatdatetime.asp">FormatDateTime</a></td>
      <td valign="top">Returns an expression formatted as a date or time</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_formatnumber.asp">FormatNumber</a></td>
      <td valign="top">Returns an expression formatted as a number</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_formatpercent.asp">FormatPercent</a></td>
      <td valign="top">Returns an expression formatted as a percentage</td>
    </tr>
  </tbody>
</table>
<br />
      <h2>Math Functions</h2>

<table>
  <tbody>
    <tr>
      <th>Function</th>
      <th>Description</th>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_abs.asp">Abs</a></td>
      <td valign="top">Returns the absolute value of a specified number</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_atn.asp">Atn</a></td>
      <td valign="top">Returns the arctangent of a specified number</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_cos.asp">Cos</a></td>
      <td valign="top">Returns the cosine of a specified number (angle)</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_exp.asp">Exp</a></td>
      <td valign="top">Returns <em>e</em> raised to       a power</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_hex.asp">Hex</a></td>
      <td valign="top">Returns the hexadecimal value of a       specified number</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_int.asp">Int</a></td>
      <td valign="top">Returns the integer part of a specified number</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_fix.asp">Fix</a></td>
      <td valign="top">Returns the integer part of a specified number</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_log.asp">Log</a></td>
      <td valign="top">Returns the natural logarithm of a specified number</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_oct.asp">Oct</a></td>
      <td valign="top">Returns the octal value of a specified number</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_rnd.asp">Rnd</a></td>
      <td valign="top">Returns a random number less than 1 but greater or equal to       0</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_sgn.asp">Sgn</a></td>
      <td valign="top">Returns an integer that indicates the sign of a specified number</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_sin.asp">Sin</a></td>
      <td valign="top">Returns the sine of a specified number (angle)</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_sqr.asp">Sqr</a></td>
      <td valign="top">Returns the square root of a specified number</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_tan.asp">Tan</a></td>
      <td valign="top">Returns the tangent of a specified number (angle)</td>
    </tr>
  </tbody>
</table>
<br />
      <h2>Array Functions</h2>
    
<table>
  <tbody>
    <tr>
      <th>Function</th>
      <th>Description</th>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_array.asp">Array</a></td>
      <td valign="top">Returns a variant containing an array</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_filter.asp">Filter</a></td>
      <td valign="top">Returns a zero-based array that contains a subset       of a string array based on a filter criteria</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_isarray.asp">IsArray</a></td>
      <td valign="top">Returns a Boolean value that indicates whether a       specified variable is an array</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_join.asp">Join</a></td>
      <td valign="top">Returns a string that consists of a number of substrings       in an array</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_lbound.asp">LBound</a></td>
      <td valign="top">Returns the smallest subscript for       the indicated dimension of an array</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_split.asp">Split</a></td>
      <td valign="top">Returns a zero-based, one-dimensional array that contains a       specified number of substrings</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_ubound.asp">UBound</a></td>
      <td valign="top">Returns the largest subscript for the       indicated dimension of an array</td>
    </tr>
  </tbody>
</table>
<br />
    <h2>String Functions</h2>
    
<table>
  <tbody>
    <tr>
      <th>Function</th>
      <th>Description</th>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_instr.asp">InStr</a></td>
      <td valign="top">Returns the position of the first occurrence of       one string within another. The search begins at the first character of the       string</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_instrrev.asp">InStrRev</a></td>
      <td valign="top">Returns the position of the first occurrence of one string       within another. The search begins at the last character of the string</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_lcase.asp">LCase</a></td>
      <td valign="top">Converts a specified string to lowercase</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_left.asp">Left</a></td>
      <td valign="top">Returns a specified number of characters from       the left side of a string</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_len.asp">Len</a></td>
      <td valign="top">Returns the number of characters in a string</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_ltrim.asp">LTrim</a></td>
      <td valign="top">Removes spaces on the left side of a string</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_rtrim.asp">RTrim</a></td>
      <td valign="top">Removes spaces on the right side of a string</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_trim.asp">Trim</a></td>
      <td valign="top">Removes spaces on both the left and the right side of a       string</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_mid.asp">Mid</a></td>
      <td valign="top">Returns a specified number of characters from a       string</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_replace.asp">Replace</a></td>
      <td valign="top">Replaces a specified part of a string with another string a       specified number of times</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_right.asp">Right</a></td>
      <td valign="top">Returns a specified number of characters from       the right side of a string</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_space.asp">Space</a></td>
      <td valign="top">Returns a string that consists of a specified number of       spaces</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_strcomp.asp">StrComp</a></td>
      <td valign="top">Compares two strings and returns a value that represents       the result of the comparison</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_string.asp">String</a></td>
      <td valign="top">Returns a string that contains a repeating character of a       specified length</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_strreverse.asp">StrReverse</a></td>
      <td valign="top">Reverses a string</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_ucase.asp">UCase</a></td>
      <td valign="top">Converts a specified string to uppercase</td>
    </tr>
  </tbody>
</table>
<br />
    <h2>Other Functions</h2>
    
<table>
  <tbody>
    <tr>
      <th>Function</th>
      <th>Description</th>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_createobject.asp">CreateObject</a></td>
      <td valign="top">Creates an object of a specified type</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_eval.asp">Eval</a></td>
      <td valign="top">Evaluates an expression and returns the result</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_getlocale.asp">GetLocale</a></td>
      <td valign="top">Returns the current locale ID</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_getobject.asp">GetObject</a></td>
      <td valign="top">Returns a reference to an automation object       from a file</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_getref.asp">GetRef</a></td>
      <td valign="top">Allows you to connect a VBScript procedure to a DHTML event       on your pages</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_inputbox.asp">InputBox</a></td>
      <td valign="top">Displays a dialog box, where the user can write some input       and/or click on a button, and returns the contents</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_isempty.asp">IsEmpty</a></td>
      <td valign="top">Returns a Boolean value that indicates whether a       specified variable has been initialized or not</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_isnull.asp">IsNull</a></td>
      <td valign="top">Returns a Boolean value that indicates whether       a specified expression contains no valid data (Null)</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_isnumeric.asp">IsNumeric</a></td>
      <td valign="top">Returns a Boolean value that indicates whether a specified       expression can be evaluated as a number</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_isobject.asp">IsObject</a></td>
      <td valign="top">Returns a Boolean value that indicates whether the       specified expression is an automation object</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_loadpicture.asp">LoadPicture</a></td>
      <td valign="top">Returns a picture object. Available only on       32-bit platforms</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_msgbox.asp">MsgBox</a></td>
      <td valign="top">Displays a message box, waits for the user to click a       button, and returns a value that indicates which button the user clicked</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_rgb.asp">RGB</a></td>
      <td valign="top">Returns a number that represents an RGB       color value</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_round.asp">Round</a></td>
      <td valign="top">Rounds a number</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_scriptengine.asp">ScriptEngine</a></td>
      <td valign="top">Returns the scripting       language in use</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_scriptengine.asp">ScriptEngineBuildVersion</a></td>
      <td valign="top">Returns the build version number of the       scripting engine in use</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_scriptengine.asp">ScriptEngineMajorVersion</a></td>
      <td valign="top">Returns the major version number of the       scripting engine in use</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_scriptengine.asp">ScriptEngineMinorVersion</a></td>
      <td valign="top">Returns the minor version number of the       scripting engine in use</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_setlocale.asp">SetLocale</a></td>
      <td valign="top">Sets the locale ID and returns the previous locale ID</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_typename.asp">TypeName</a></td>
      <td valign="top">Returns the subtype       of a specified variable</td>
    </tr>
    <tr>
      <td valign="top"><a href="http://www.w3schools.com/vbscript/func_vartype.asp">VarType</a></td>
      <td valign="top">Returns a value that indicates the subtype of a specified       variable</td>
    </tr>
  </tbody>
</table>]]></description>
	<link><![CDATA[http://www.misistemaweb.com/dblog/articolo.asp?articolo=31]]></link>
	<guid isPermaLink="true">http://www.misistemaweb.com/dblog/articolo.asp?articolo=31</guid>
	<dc:date>2012-05-02T08:59:11+01:00</dc:date>
	<dc:creator>Admin</dc:creator>
</item>
<item>
	<title><![CDATA[No se puede desplazar objetos fuera de la hoja]]></title>
	<description><![CDATA[Cuando desea inserta una nueva columna en una hoja de Excel 2007 aparece el error &quot;No se puede desplazar objetos fuera de la hoja&quot; .<br /><br />Para solucioanr el problema siga los pasos que se explican a continuaci&oacute;n:<br /><br />1.Logo Office<br /> 2.Opciones de Excel<br /> 3.Avanzadas<br /> 4.Mostrar Opciones  para  este libro:<br /> 5.Para objetos mostrar:&quot;<br /> 6.MARCAR &quot;Todo&quot;<br /><br />&iquest;Por qu&eacute; aparece &quot;No se puede desplazar objetos fuera de la hoja&quot; cuando oculta columnas o filas?<br /><br />Por qu&eacute; aparece No se puede desplazar objetos fuera de la hoja cuando oculta columnas o filas_ppalEste mensaje se produce debido a 2 cosas:<br /><br />1. Se insertan objetos o comentarios al final de la cuadr&iacute;cula de las hojas.<br /><br />2. La opci&oacute;n &ldquo;No mover ni cambiar tama&ntilde;o con celdas&rdquo; est&aacute; seleccionada en la ventana del formato del objeto. Esta opci&oacute;n est&aacute; activa de forma predeterminada.<br /><br />Por qu&eacute; aparece No se puede desplazar objetos fuera de la hoja cuando oculta columnas o filas_image1<br /><br />Por ejemplo, si ha incluido un comentario en la celda XFC1 y la opci&oacute;n No mover ni cambiar tama&ntilde;o con celdas est&aacute; seleccionada, el mensaje aparece al intentar ocultar tres o m&aacute;s columnas en alg&uacute;n lugar de la hoja entre la primera columna y la columna que contiene el borde izquierdo del comentario de celda.<br /><br />C&oacute;mo solucionarlo?<br /><br />1. Para cualquier tipo de objeto, selecci&oacute;nelo y haga clic derecho en &ldquo;Tama&ntilde;o y Propiedades&rdquo;<br /><br />Por qu&eacute; aparece No se puede desplazar objetos fuera de la hoja cuando oculta columnas o filas_image2<br /><br />2. En la ficha Propiedades, en Posicionamiento del objeto, haga clic en Mover y cambiar tama&ntilde;o con celdas.<br /><br />Por qu&eacute; aparece No se puede desplazar objetos fuera de la hoja cuando oculta columnas o filas_image3<br /><br />Nota: Tenga presente que estos 2 pasos funcionar&aacute;n para cualquier tipo de objeto, desde un comentario, una forma y un SmartArt.]]></description>
	<link><![CDATA[http://www.misistemaweb.com/dblog/articolo.asp?articolo=30]]></link>
	<guid isPermaLink="true">http://www.misistemaweb.com/dblog/articolo.asp?articolo=30</guid>
	<dc:date>2012-03-02T08:55:55+01:00</dc:date>
	<dc:creator>Admin</dc:creator>
</item>
<item>
	<title><![CDATA[Múltiples acciones en un formulario]]></title>
	<description><![CDATA[En primer lugar creamos el formulario con los botones que ejecutar&aacute;n las acciones:<br /><br /><textarea cols="50" rows="5">&lt;!-- create the form --&gt; &lt;form name=&quot;Form1&quot; method=&quot;post&quot;&gt;  &lt;!-- Add the data entry bits --&gt; Your Name &lt;input type=&quot;text&quot; name=&quot;text1&quot; size=&quot;10&quot; /&gt;&lt;br /&gt;  &lt;!-- Add some buttons --&gt; &lt;INPUT type=&quot;button&quot; value=&quot;Button1&quot; name=button1 onclick=&quot;return OnButton1();&quot;&gt; &lt;INPUT type=&quot;button&quot; value=&quot;Button2&quot; name=button2 onclick=&quot;return OnButton2();&quot;&gt;  &lt;!-- close the form --&gt; &lt;/form&gt; </textarea>  <br /> <br />Enseguida generamos el c&oacute;digo javascript para manejar los eventos:<br /><br />  <textarea cols="50" rows="5">&lt;script language=&quot;Javascript&quot;&gt; &lt;!-- function OnButton1() {     document.Form1.action = &quot;Page1.aspx&quot;     document.Form1.target = &quot;_blank&quot;;    // Open in a new window     document.Form1.submit();             // Submit the page     return true; }  function OnButton2() {     document.Form1.action = &quot;Page2.aspx&quot;     document.Form1.target = &quot;_blank&quot;;    // Open in a new window     document.Form1.submit();             // Submit the page     return true; } --&gt; &lt;/script&gt; &lt;noscript&gt;You need Javascript enabled for this to work&lt;/noscript&gt;  </textarea>]]></description>
	<link><![CDATA[http://www.misistemaweb.com/dblog/articolo.asp?articolo=29]]></link>
	<guid isPermaLink="true">http://www.misistemaweb.com/dblog/articolo.asp?articolo=29</guid>
	<dc:date>2012-03-01T09:28:58+01:00</dc:date>
	<dc:creator>Admin</dc:creator>
</item>
<item>
	<title><![CDATA[Obtener ID de sesión en ASP]]></title>
	<description><![CDATA[<p>Uno de los datos por los cuales podemos identificar a un usuario es  mediante su ID de sesión. Una sesión se establece por el usuario cada  vez que este utiliza un navegador nuevo para acceder a nuestra web. El  valor del ID de sesión es asignado automáticamente por el servidor web.</p>
<p>Si queremos acceder al ID de sesión dentro de nuestro programa ASP tenemos que utilizar el objeto Session, en concreto el campo SessionID. Lo podemos visualizar de la siguiente forma:
</p>
<br>
<textarea cols="50" rows="5">

Response.Write(Session.SessionID) 

</textarea>
<br>
<p>Hay  que tener especial cuidado con este identificativo, que aunque nos  puede servir para muchas cosas, podría repetirse en el tiempo. Ya que  ante una eventual caída o reinicio del servidor web, este, puede volver a  generar ID repetidos. Si bien, tiene una gran utilidad a la hora de  saber como el usuario ha ido navegando por nuestro website.</p>]]></description>
	<link><![CDATA[http://www.misistemaweb.com/dblog/articolo.asp?articolo=28]]></link>
	<guid isPermaLink="true">http://www.misistemaweb.com/dblog/articolo.asp?articolo=28</guid>
	<dc:date>2012-01-26T13:32:35+01:00</dc:date>
	<dc:creator>Admin</dc:creator>
</item>
	</channel></rss>
