Search Results
Your text will go here...
TechNote: Lasso 9 - Resolving XML error when activating MySQL Session Storage
Lasso 9 can store session data in Memory, SQLite (default), or MySQL and each has specific benefits. The session data is stored encoded as XML. On CentOS, Lasso 9 leverag
Tag Sets and Namespaces
The tip of the week for March 21, 2008 explains how Lasso's tag namespaces can be used to more easily call sets of custom tags which you have defined. For example, this allows you to use a different set of custom tags fo
Syntax Speed Tips for LP8.5
Tips for choosing the syntax that will execute the fastest.
Incrementing
$x += 1
is faster than
$x = $x + 1
which is faster than
$x++
If vs Select
Both are close enough in speed that you should use the one t
Syntax Compatibility Between 8.5 and 9
Best practices to write Lasso 8.5 code that will work in Lasso 9
Goal of this page
Lassoscript syntax has evolved a lot in Lasso 9, but 8.5 syntax is still compatible, if you respect a few rules. The aim o
OS Support and Wallpaper Paste25 Jan 2011
If you have ever drywalled a room, you know how miserable a job it is. First, you have to rough-patch the wall, then you have to apply drywall compound to the wall (spackle). Then you have to wait until it d
1. Select an operating system
AllLinux Mac OS XWindows
2. Select a major release of Lasso
Lasso 8 Lasso 9
Version 9.3
Note: Each version's OS variant will include support for all of that OS's variants exc
LassoSoft Releases 10 days of One-Day deals as an End Of Summer Promotion
Starting Sept 22 each day until October 1st there is a super-saving offer made available to Lasso users who are connected to LassoSoft via Twitter, LinkedIn, Facebook, and La
Storing and Recalling Inline Database Results
This article discusses how database results which are stored in an array can be fed back into an inline so all the familiar [Records] ... [/Records] and [Field] tags work on them.
Introduction
The [
SQL Rows by Page Number
Retrieve all rows for a givenpage number using LIMIT within a -sql inline.
When displaying search results from a -sql inline, it's often helpful to limit the number of hits, such as 10 per page. In order to grab the co