User Leo Moore - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T10:58:45Zhttp://stackoverflow.com/feeds/user/6336http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1058033/how-to-create-shared-vb-array-initialisors-for-nerddinner/1502504#15025041Answer by Leo Moore for How to create Shared VB Array Initialisors for NerdDinnerLeo Moore2009-10-01T07:55:42Z2009-10-01T07:55:42Z<p>In case its any use, here is my completed VB.Net NerdDinner PhoneValidator incl UK and Ireland Mobile Phones</p>
<pre><code>Public Class PhoneValidator
Private Shared Function GetIDictionary() As IDictionary(Of String, Regex)
Dim countryRegex As IDictionary(Of String, Regex) = New Dictionary(Of String, Regex)()
countryRegex("USA") = New Regex("^[2-9]\\d{2}-\\d{3}-\\d{4}$")
countryRegex("UK") = New Regex("(^1300\\d{6}$)|(^1800|1900|1902\\d{6}$)|(^0[2|3|7|8]{1}[0-9]{8}$)|(^13\\d{4}$)|(^04\\d{2,3}\\d{6}$)")
countryRegex("Netherlands") = New Regex("(^\\+[0-9]{2}|^\\+[0-9]{2}\\(0\\)|^\\(\\+[0-9]{2}\\)\\(0\\)|^00[0-9]{2}|^0)([0-9]{9}$|[0-9\\-\\s]{10}$)")
countryRegex("Ireland") = New Regex("^((07|00447|\+447)\d{9}|(08|003538|\+3538)\d{8,9})$")
'
Return countryRegex
End Function
Public Shared Function IsValidNumber(ByVal phoneNumber As String, ByVal country As String) As Boolean
If country IsNot Nothing AndAlso GetIDictionary.ContainsKey(country) Then
Return GetIDictionary(country).IsMatch(phoneNumber)
Else
Return False
End If
End Function
Public ReadOnly Property Countries() As IEnumerable(Of String)
Get
Return GetIDictionary.Keys
End Get
End Property
End Class
</code></pre>
http://stackoverflow.com/questions/639393/html-encoding-in-t-sql3HTML Encoding in T-SQL?Leo Moore2009-03-12T16:18:07Z2009-09-25T10:33:52Z
<p>Is there any function to encode HTML strings in T-SQL? I have a legacy database which contains dodgey characters such as '<', '>' etc. I can write a function to replace the characters but is there a better way?</p>
<p>I have an ASP.Net application and when it returns a string it contains characters which cause an error. The ASP.Net application is reading the data from a database table. It does not write to the table itself.</p>
http://stackoverflow.com/questions/115361/what-is-the-best-way-to-handle-incoming-sms-messages1What is the best way to handle incoming SMS messages?Leo Moore2008-09-22T15:06:30Z2009-07-12T07:01:58Z
<p>I have a client who wants a solution to allow delivery people to text (SMS messaging) in that they have completed a pick up at a particular location. What I'm looking for is Code to read an imbound SMS message or a SMS component if appropiate. This would allow me to create a windows service to read the message and update a SQL record accordingly.</p>
http://stackoverflow.com/questions/246317/how-do-i-cancel-a-delete-in-sql3How do I cancel a Delete in SQLLeo Moore2008-10-29T10:18:22Z2009-03-20T19:37:57Z
<p>I want to create a trigger to check what is being deleted against business rules and then cancel the deletion if needed. Any ideas?</p>
<p><strong>Update</strong>
The solution used the Instead of Delete trigger. The Rollback tran stopped the delete. I was afraid that I would have a cascade issue when I did the delete but that did'nt seem to happen. Maybe a trigger cannot trigger itself. Anyhow, thanks all for your help.</p>
http://stackoverflow.com/questions/648714/kill-a-blocked-process-in-a-database/648946#648946-1Answer by Leo Moore for Kill a blocked process in a databaseLeo Moore2009-03-16T01:19:53Z2009-03-16T08:52:01Z<h2>Temporary Solution</h2>
<p>Use sp_who to find the spids and kill spid (ie kill 59 where 59 is the spid of the blocking process) to kill the process.</p>
<h2>Real Solution</h2>
<p>This will sort the problem but its not going to stop it from happening again. To do that you need to look at your code. I would suggest at a minimum that you use WITH NO LOCK on any select you are doing to reduce the potential for locks.</p>
<p>Also, you could refactor your code so that you only are accessing the bare mininum number of times. Consider copying to a temp (# or ##) table to do detailed processing and then copy back to position if needed. This particularly applies where the purpose is to prep data for reporting. It is better to pull the data once and do any additional processing away from the main tables.</p>
<p>If this is not possible because the underlying data is changing too fast or you require changes to be applied for other purposes then use a SQL Service Broker to queue up async work items. This can be used to resolve blocking depending on your situation.</p>
http://stackoverflow.com/questions/639393/html-encoding-in-t-sql/648406#6484060Answer by Leo Moore for HTML Encoding in T-SQL?Leo Moore2009-03-15T19:40:20Z2009-03-15T19:40:20Z<p>OK here is what I did. I created a simple function to handle it. Its far from complete but at least handles the standard <>& characters. I'll just add to it as I go along.</p>
<pre><code>CREATE FUNCTION HtmlEncode
(
@UnEncoded as varchar(500)
)
RETURNS varchar(500)
AS
BEGIN
-- Declare the return variable here
DECLARE @Encoded as varchar(500)
-- Add the T-SQL statements to compute the return value here
SELECT @Encoded = Replace(@UnEncoded,'<','&lt;')
SELECT @Encoded = Replace(@Encoded,'>','&gt;')
SELECT @Encoded = Replace(@Encoded,'&','&amp;')
-- Return the result of the function
RETURN @Encoded
END
GO
</code></pre>
<p>I can then use:</p>
<pre><code>Select Ref,dbo.HtmlEncode(RecID) from Customers
</code></pre>
<p>This gives me a HTML safe Record ID. There is probably a built in function but I can't find it.</p>
http://stackoverflow.com/questions/628185/do-you-think-compiled-languages-have-reached-their-eol/628283#628283-1Answer by Leo Moore for Do you think compiled languages have reached their EOL?Leo Moore2009-03-09T22:30:06Z2009-03-10T00:00:27Z<p>As long as speed and security matters then compiled languages will always have the edge. Can't see any interpreted operating systems or real time banking systems on the horizon. </p>
<p>Interpreted languages have their place but there is not enough evidence to suggest they will replace compiled languages any time soon. I'd like to see a few more maintenance and upgrade cycles before I make my mind up.</p>
http://stackoverflow.com/questions/587420/iis7-only-serves-up-one-page-at-a-time-its-a-making-me-crazy/628469#6284692Answer by Leo Moore for IIS7 - only serves up one page at a time. It's a making me crAzY!Leo Moore2009-03-09T23:45:26Z2009-03-09T23:45:26Z<p>Are you sure you don't have a dependency in your code which is causing the deadlock. I've seen this before where logging, sql connections etc creates a dependency. Use perfmon and check the hard disk read/write queue, memory read/write queue to see if things are backing up.</p>
<p>I would highly recommend <a href="http://blogs.msdn.com/tess/archive/2008/05/21/the-21-most-popular-blog-posts.aspx" rel="nofollow">Tess Ferrandez's (ASP.NET Escalation Engineer - Microsoft)</a> blog for lots in insights and way to find out what is happening. Tess has forgotten more about this stuff than most people will ever know.</p>
<p>I think your problem is not IIS related but something in your app, probably in your ActiveX component. Make sure you clean up after your ActiveX component. Here's a piece of code I use to clean up after using Excel (Another Com component). Remember Com is not managed.</p>
<pre><code> Private Sub ShutDownExcel()
If objExcel IsNot Nothing Then
objExcel.DisplayAlerts = True
objExcel.Quit()
System.Runtime.InteropServices.Marshal.ReleaseComObject(objExcel)
objExcel = Nothing
End If
' Clean up memory so Excel can shut down.
GC.Collect()
GC.WaitForPendingFinalizers()
' The GC needs to be called twice in order to get the
' Finalizers called - the first time in, it simply makes
' a list of what is to be finalized, the second time in,
' it actually the finalizing. Only then will the
' object do its automatic ReleaseComObject.
GC.Collect()
GC.WaitForPendingFinalizers()
End Sub
</code></pre>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/627918/am-i-safe-against-sql-injection/628199#628199-2Answer by Leo Moore for Am I safe against SQL injection Leo Moore2009-03-09T22:01:50Z2009-03-09T22:42:56Z<p>Just do a replace on your v_start_name to get rid of ";" etc. ie</p>
<pre><code>v_clean_name VARCHAR;
Select v_clean_name = Replace(v_start_name,';','');
</code></pre>
<p>This will replace the ; with blanks foiling a SQL injection attack</p>
<p>For more details see <a href="http://www.postgresql.org/docs/8.1/static/functions-string.html" rel="nofollow">String Functions in PostgresSQL</a></p>
<p>As LFSR Consulting has also commented. It is better to WhiteList (ie Do not process any input with invalid characters such a ';') rather than BlackList (ie try to clean the data as the user could do a SQL injection attack on your Replace too).</p>
<p>For more info have a look at <a href="http://books.google.ie/books?id=zwAT%5FdcL84YC&pg=PA130&lpg=PA130&dq=sQL%2Binjection%2Bblack-listing&source=bl&ots=20OZQ3Pn57&sig=yWKYbqfCesUyXjvBT6pYlkLevzM&hl=en&ei=XZO1SeP-MOKHjAfi6rnoBQ&sa=X&oi=book%5Fresult&resnum=3&ct=result#PPA132,M1" rel="nofollow">SQL Injection Attacks</a></p>
http://stackoverflow.com/questions/485266/net-how-to-make-webbrowser-control-launch-in-ie-display-html-out-of-process/490271#4902710Answer by Leo Moore for .NET: How to make WebBrowser control launch in IE, display HTML, out of process?Leo Moore2009-01-29T02:14:14Z2009-01-29T02:14:14Z<p>I use this to create a new IE window with a unique random handle to enable multiple windows to be open at the same time.</p>
<pre><code> Dim WindowName As String = CStr(Rnd())
WindowName = "W" & Replace(WindowName, ".", "0")
Page.ClientScript.RegisterStartupScript(Me.GetType(), WindowName, WindowName & "=window.open('NominateList.aspx?Inviters=" & InviterList & "','" & WindowName & "','menubar=1,resizable=1,scrollbars=1,status=1,width=900,height=900');" & WindowName & ".moveTo(0,0);", True)
</code></pre>
<p>I can use this to spin up as many pages as needed. Hope this helps.</p>
http://stackoverflow.com/questions/248640/does-the-concept-of-shared-sessions-exist-in-asp-net/248704#2487041Answer by Leo Moore for Does the concept of shared sessions exist in ASP.NET?Leo Moore2008-10-29T22:50:38Z2008-10-29T22:50:38Z<p>Why don't you just create an application level object to store your details. See <a href="http://www.dotnetheaven.com/UploadFile/mahesh/ApplicationState05102005051501AM/ApplicationState.aspx?ArticleID=e42f0985-9927-4fba-86bb-0012e072a0dc" rel="nofollow">Application State and Global Variables in ASP.NET</a> for details. You can use the sessionID to act as a key for the data for each player.</p>
<p>You could also use the Cache to do the same thing using a long time out. This does have the advantage that older data could be flushed from the Cache after a period of time ie 6 hours or whatever.</p>
http://stackoverflow.com/questions/246317/how-do-i-cancel-a-delete-in-sql/246432#2464322Answer by Leo Moore for How do I cancel a Delete in SQLLeo Moore2008-10-29T11:10:55Z2008-10-29T11:10:55Z<p>The solution used the Instead of Delete trigger. The Rollback tran stopped the delete. I was afraid that I would have a cascade issue when I did the delete but that did'nt seem to happen. Maybe a trigger cannot trigger itself. Anyhow, thanks all for your help.</p>
<pre><code>ALTER TRIGGER [dbo].[tr_ValidateDeleteForAssignedCalls]
on [dbo].[CAL]
INSTEAD OF DELETE
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
DECLARE @RecType VARCHAR(1)
DECLARE @UserID VARCHAR(8)
DECLARE @CreateBy VARCHAR(8)
DECLARE @RecID VARCHAR(20)
SELECT @RecType =(SELECT RecType FROM DELETED)
SELECT @UserID =(SELECT UserID FROM DELETED)
SELECT @CreateBy =(SELECT CreateBy FROM DELETED)
SELECT @RecID =(SELECT RecID FROM DELETED)
-- Check to see if the type is a Call and the item was created by a different user
IF @RECTYPE = 'C' and not (@USERID=@CREATEBY)
BEGIN
RAISERROR ('Cannot delete call.', 16, 1)
ROLLBACK TRAN
RETURN
END
-- Go ahead and do the update or some other business rules here
ELSE
Delete from CAL where RecID = @RecID
END
</code></pre>
http://stackoverflow.com/questions/159912/what-software-development-related-blogs-do-you-follow/159933#1599330Answer by Leo Moore for What software development-related blogs do you follow?Leo Moore2008-10-01T21:53:54Z2008-10-01T21:53:54Z<p>Definately include <a href="http://www.dotnetrocks.com/" rel="nofollow">Dot Net Rocks</a> on your list. Its not exactly a blog but I suppose its an Audio Blog and is a great way to keep up to date on whats new and best practices. They also have a transcript for each show so you can search for particular topics or just review the show in text.</p>
http://stackoverflow.com/questions/123672/exporting-tab-delimited-files-in-ssrs-2005/124523#1245231Answer by Leo Moore for Exporting tab-delimited files in SSRS 2005Leo Moore2008-09-23T23:21:27Z2008-09-23T23:21:27Z<p>I used a select query to format the data and BCP to extract the data out into a file. In my case I encapsulated it all in a stored procedure and scheduled it using the SQL Agent to drop files at certain times. The basic coding is similar to:</p>
<pre><code>use tempdb
go
create view vw_bcpMasterSysobjects
as
select
name = '"' + name + '"' ,
crdate = '"' + convert(varchar(8), crdate, 112) + '"' ,
crtime = '"' + convert(varchar(8), crdate, 108) + '"'
from master..sysobjects
go
declare @sql varchar(8000)
select @sql = 'bcp "select * from tempdb..vw_bcpMasterSysobjects
order by crdate desc, crtime desc"
queryout c:\bcp\sysobjects.txt -c -t, -T -S'
+ @@servername
exec master..xp_cmdshell @sql
</code></pre>
<p>Please have a look at the excellent post <a href="http://www.simple-talk.com/sql/database-administration/creating-csv-files-using-bcp-and-stored-procedures/" rel="nofollow">creating-csv-files-using-bcp-and-stored-procedures</a>. </p>
http://stackoverflow.com/questions/115818/which-format-for-small-website-images-gif-or-png/115855#11585511Answer by Leo Moore for Which format for small website images? GIF or PNG?Leo Moore2008-09-22T16:20:47Z2008-09-23T23:03:11Z<p>The W3C mention 3 advantages of PNG over GIF.</p>
<p>• Alpha channels (variable
transparency), </p>
<p>• Cross-platform gamma correction
(control of image brightness) and
color correction </p>
<p>• Two-dimensional interlacing (a
method of progressive display).</p>
<p>Also, have a look at these resources for guidance:</p>
<ul>
<li><a href="http://www.w3.org/QA/Tips/png-gif" rel="nofollow">PNG v's GIF (W3C Guidance)</a></li>
<li><a href="http://www.libpng.org/pub/png/pngfaq.html" rel="nofollow">PNG FAQ</a></li>
</ul>
http://stackoverflow.com/questions/123688/how-can-a-modeless-vb6-application-do-cleanup-when-the-application-is-shutting-do/123728#1237280Answer by Leo Moore for How can a modeless VB6 application do cleanup when the application is shutting down?Leo Moore2008-09-23T20:42:23Z2008-09-23T20:42:23Z<p>Its been a while since I wrote in VB6 but if I remember correctly you can use the Unload event to call your cleanup code (it similar to the closing event in .net). You can also check that there are no other forms in the VB6 app still running</p>
http://stackoverflow.com/questions/123524/how-to-use-net-3-0-with-visual-studio-2005/123600#1236002Answer by Leo Moore for How to use .NET 3.0 with Visual Studio 2005?Leo Moore2008-09-23T20:19:03Z2008-09-23T20:36:30Z<p>You can recreate the project file in vs2005 and then update the headers on the files to vs2005 and you are back in business. Have a look at <a href="http://www.west-wind.com/Weblog/posts/122975.aspx" rel="nofollow">Rick Strahls Blog</a> for more details on how its done.</p>
<p>Also worth looking at the project converter in <a href="http://home.hot.rr.com/graye/Articles/ProjectConverter.htm" rel="nofollow">Visual Studio 2005/2008 Interoperability</a></p>
<p>You may also need the Visual Studio 2005 extensions for .Net 3.0 to be installed. <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=5D61409E-1FA3-48CF-8023-E8F38E709BA6&displaylang=en" rel="nofollow">WWF Extensions</a></p>
http://stackoverflow.com/questions/119295/pass-through-authentication-for-ms-sql-2005-db-from-sharepoint/119348#1193481Answer by Leo Moore for Pass-through authentication for MS SQL 2005 DB from SharePoint?Leo Moore2008-09-23T06:13:20Z2008-09-23T06:22:19Z<p>If you are using C# the code and connection string is:</p>
<pre><code>using System.Data.SqlClient;
...
SqlConnection oSQLConn = new SqlConnection();
oSQLConn.ConnectionString =
"Data Source=(local);" +
"Initial Catalog=myDatabaseName;" +
"Integrated Security=SSPI";
//Or
// "Server=(local);" +
// "Database=myDatabaseName;" +
// "Trusted_Connection=Yes";
oSQLConn.Open();
...
oSQLConn.Close();
</code></pre>
<p>An excellent resource for connection strings can be found at <a href="http://www.carlprothman.net/Default.aspx?tabid=81" rel="nofollow">Carl Prothman's Blog</a>. Yoy should probably replace <code>(local)</code> with the name of the SQL server.</p>
<p>You will need to either configure SQL server to give the Domain Roles the access privilages you want. In SQL server you will need to go to Security\Logins and make sure you have the Domain\User Role (ie MyCompany\SharpointUsers). In your config you should have</p>
http://stackoverflow.com/questions/117570/best-approach-for-sortable-table-with-a-lot-of-data/118683#1186832Answer by Leo Moore for Best approach for sortable table with a lot of dataLeo Moore2008-09-23T01:44:40Z2008-09-23T01:44:40Z<p>What database are you using as there some good paging option in SQL 2005 and upwards using ROW_NUMBER to allow you to do paging on the server. I found this good one on <a href="http://www.cristiandarie.ro/asp20-sql-server-ecommerce/" rel="nofollow">Christian Darie's blog</a></p>
<p>eg This procedure which is used to page products in a category. You just pass in the pagenumber you want and the number of products on the page etc</p>
<pre><code>CREATE PROCEDURE GetProductsInCategory
(@CategoryID INT,
@DescriptionLength INT,
@PageNumber INT,
@ProductsPerPage INT,
@HowManyProducts INT OUTPUT)
AS
-- declare a new TABLE variable
DECLARE @Products TABLE
(RowNumber INT,
ProductID INT,
Name VARCHAR(50),
Description VARCHAR(5000),
Price MONEY,
Image1FileName VARCHAR(50),
Image2FileName VARCHAR(50),
OnDepartmentPromotion BIT,
OnCatalogPromotion BIT)
-- populate the table variable with the complete list of products
INSERT INTO @Products
SELECT ROW_NUMBER() OVER (ORDER BY Product.ProductID),
Product.ProductID, Name,
SUBSTRING(Description, 1, @DescriptionLength) + '...' AS Description,
Price, Image1FileName, Image2FileName, OnDepartmentPromotion, OnCatalogPromotion
FROM Product INNER JOIN ProductCategory
ON Product.ProductID = ProductCategory.ProductID
WHERE ProductCategory.CategoryID = @CategoryID
-- return the total number of products using an OUTPUT variable
SELECT @HowManyProducts = COUNT(ProductID) FROM @Products
-- extract the requested page of products
SELECT ProductID, Name, Description, Price, Image1FileName,
Image2FileName, OnDepartmentPromotion, OnCatalogPromotion
FROM @Products
WHERE RowNumber > (@PageNumber - 1) * @ProductsPerPage
AND RowNumber <= @PageNumber * @ProductsPerPage
</code></pre>
http://stackoverflow.com/questions/115361/what-is-the-best-way-to-handle-incoming-sms-messages/115623#1156230Answer by Leo Moore for What is the best way to handle incoming SMS messages?Leo Moore2008-09-22T15:41:55Z2008-09-22T15:41:55Z<p>Thanks Luke, I am thinking more of a GSM modem which would be connected to the server. I think this would give more control rather than go through a third party, but I take your point and will investigate further.</p>
http://stackoverflow.com/questions/67831/what-is-the-best-data-access-paradigm-for-scalability8What is the best data access paradigm for scalability?Leo Moore2008-09-15T23:07:46Z2008-09-17T04:34:47Z
<p>There are so many different options coming out of microsoft for data access. Which one is the best for scalable apps?</p>
<p><strong>Linq</strong></p>
<p>Should we be using Linq? It certainly seems easy but if you know your SQL does it really help. Also I hear that you can't run Async queries in ASP.NET using Linq. Therefore I wonder if it is really scalable? Are there any really big sites using Linq (With the possible exception of stackoverflow).</p>
<p><strong>Entity Framework</strong></p>
<p>Don't hear so much razzmatazz about the Entity Framework. Seems closer to the Object model I'm familure with. </p>
<p><strong>Astoria/Dynamic Data</strong></p>
<p>Should we be exposing our data as a service?</p>
<p>I'm pretty confused and thats before I get into the other ORM products like NHibernate. Any ideas or wisdom on which is better?</p>
http://stackoverflow.com/questions/52608/is-subversion-version-control-necessary-for-a-small-development-group-1-2-prog/61295#612950Answer by Leo Moore for Is Subversion (Version Control) Necessary For A Small Development Group (1-2 programmers)?Leo Moore2008-09-14T12:12:21Z2008-09-17T01:31:30Z<p>Is Visual SourceSafe an option? I am a single programmer and have been using it as a repositry for the last while with no problems but I keep hearing about horror stories. Is it really that bad?</p>
http://stackoverflow.com/questions/67835/deleting-a-file-in-vba/67853#678530Answer by Leo Moore for Deleting a file in VBALeo Moore2008-09-15T23:11:17Z2008-09-15T23:11:17Z<p>In VB its normally Dir to find the directoy of the file. If its not blank then it exists and then use Kill to get rid of the file.</p>
<pre><code>test = Dir(filename)
If not test="" then
Kill(Filename)
end if
</code></pre>
http://stackoverflow.com/questions/67676/dataset-select-and-datetime/67696#676962Answer by Leo Moore for DataSet.Select and DateTimeLeo Moore2008-09-15T22:41:44Z2008-09-15T22:41:44Z<p>The best method is dd MMM yyyy (ie 15 Sep 2008). This means there is no possiblity of getting it wrong for different Locals.</p>
<pre><code>ds.select(DBDate = '15 Sep 2008')
</code></pre>
<p>You can use the DateFormat function to convert to long date format as well and this will work fine too.</p>
http://stackoverflow.com/questions/63447/how-do-you-preform-an-if-then-in-a-sql-select/63464#634640Answer by Leo Moore for How do you preform an IF...THEN in a SQL SELECT Leo Moore2008-09-15T14:36:14Z2008-09-15T14:36:14Z<p>Use the IFF</p>
<p>The IFF() function tests a specified expression and returns one of two strings, based on whether the expression tested was true or false.</p>
<p>Example:
Select IFF(curr_bal>0,'Yes','No'), last_name from customer</p>
http://stackoverflow.com/questions/62251/where-can-i-find-good-asp-net-tutorialor-books-online/62265#622650Answer by Leo Moore for Where can I Find GOOD ASP.NET tutorial(or books) online?Leo Moore2008-09-15T12:05:00Z2008-09-15T12:05:00Z<p>I recommend <a href="http://www.learnvisualstudio.net/" rel="nofollow">learnvisualstudio.net</a>. Get site lots of videos of how to do ASP.Net best investment I ever made. $56 will get you a year. Beats buying books when someone can show you how.</p>
<p>Also recommend <a href="http://www.dnrTV.com" rel="nofollow">dnrTV</a>. Another great site with excellent stuff on ASP topics</p>
http://stackoverflow.com/questions/62013/problem-with-login-control-of-asp-net/62050#620502Answer by Leo Moore for Problem with Login control of ASP.NETLeo Moore2008-09-15T09:51:36Z2008-09-15T09:51:36Z<p>You normally have a initial folder with the generally accessable forms and a seperate folder with all the login protected items. In the initial folder you have a webconfig with:</p>
<pre><code> <!--Deny all users -->
<authorization>
<deny users="*" />
</authorization>
</code></pre>
<p>In the other folder you can put a seperate webconfig with settings like:</p>
<pre><code> <!--Deny all users unless autherticated -->
<authorization>
<deny users="?" />
</authorization>
</code></pre>
<p>If you want to further refine it you can allow access to a particular role only.</p>
<pre><code><configuration>
<system.web>
<authorization>
<allow roles="Admins"/>
<deny users="*"/>
</authorization>
</system.web>
</configuration>
</code></pre>
<p>This will deny access to anyone who does not have a role of admin, which they can only get if they are logged in sucessfully.</p>
<p>If you want some good background I recommend the DNR TV episode with Miguel Castro on <a href="http://www.dnrtv.com/default.aspx?showNum=20" rel="nofollow">ASP.NET Membership</a></p>
http://stackoverflow.com/questions/61914/vs-2005-toolbox-kind-of-control-net/61919#619191Answer by Leo Moore for VS 2005 Toolbox kind of control .NETLeo Moore2008-09-15T05:53:23Z2008-09-15T05:53:23Z<p>I think you just need to use a normal form (set the form type to Tool) and use the docking property to dock to to the left or right. You can set the width if you like and use the resize event to stop the user from making it too big or small.</p>
http://stackoverflow.com/questions/61688/preventing-the-loss-of-keystrokes-between-pages-in-a-web-application/61708#617080Answer by Leo Moore for Preventing the loss of keystrokes between pages in a web applicationLeo Moore2008-09-14T22:54:13Z2008-09-14T22:54:13Z<p>I think it will be quite hard to do what you want. I presume that the real problem is that the new page takes too long to load. You should look at caching the page or doing partial caching on the static components such as pictures etc. to improve the load time or preloading the page and making it invisible. (see <a href="http://www.sitepoint.com/print/1273/?PHPSESSID=850e8f554020735a2e213dd825cb9e3d" rel="nofollow">Simple Tricks for More Usable Forms</a> for some ideas)</p>
<p>For coding options you could use javascript to capture the keystrokes (see <a href="http://lists.evolt.org/archive/Week-of-Mon-20021230/131136.html" rel="nofollow">Detecting various Keystroke</a>)</p>
<pre><code><html><head>
<script language=javascript>
IE=document.all;
NN=document.layers;
kys="";
if (NN){document.captureEvents(Event.KEYPRESS)}
document.onkeypress=katch
function katch(e){
if (NN){kys+=e.which}
if (IE){kys+=event.keyCode}
document.forms[0].elements[0].value=kys
}
</script>
</head>
<body>
<form><input></form>
</body>
</html>
</code></pre>
<p>You will need to save and then transfer them to the new page after control passes from the current page. (see <a href="http://www.codeproject.com/KB/aspnet/Save_on_Close_of_Browser.aspx" rel="nofollow">Save Changes on Close of Browser or when exiting the page</a>)</p>
<p>For some general info on problems with detecting keystrokes in the various browsers have a look at <a href="http://www.quirksmode.org/js/keys.html" rel="nofollow">Javascript - Detecting keystrokes</a>.</p>
http://stackoverflow.com/questions/61543/where-does-the-term-escaping-originate-from/61549#615497Answer by Leo Moore for Where does the term "escaping" originate from?Leo Moore2008-09-14T18:47:49Z2008-09-14T21:04:57Z<p>It was originally to do with printers. When printing to a old dot matrix printer if you wanted to use italics or select from the 2 or 3 fonts (ie draft, normal or letter quality) you would preceed the command with an ASCII escape character to tell the dot matrix printer not to print the next value and to execute it instead. </p>
<p>Since the advent of Windows this is all handled by the printer drivers but the terminology is still used.</p>
http://stackoverflow.com/questions/1170547/how-can-i-target-net-4-0-beta-using-nant/1215748#1215748Comment by Leo Moore on How can I target .Net 4.0 Beta using NAnt?Leo Moore2009-11-03T17:07:27Z2009-11-03T17:07:27ZThanks Mitch, you saved me a lot of messing around. I am using .Net 4.0.21006 and it works fine.http://stackoverflow.com/questions/639393/html-encoding-in-t-sql/1476575#1476575Comment by Leo Moore on HTML Encoding in T-SQL?Leo Moore2009-09-29T10:15:48Z2009-09-29T10:15:48ZThanks, you are correct. I did chnage it in production but forgot to update the previous post.http://stackoverflow.com/questions/628185/do-you-think-compiled-languages-have-reached-their-eol/628283#628283Comment by Leo Moore on Do you think compiled languages have reached their EOL?Leo Moore2009-09-18T13:03:21Z2009-09-18T13:03:21ZInterpreted = More Flexible
Compiled = Fasterhttp://stackoverflow.com/questions/639393/html-encoding-in-t-sql/639614#639614Comment by Leo Moore on HTML Encoding in T-SQL?Leo Moore2009-06-12T09:29:07Z2009-06-12T09:29:07ZI agree completely, but its not my choice. Its a legacy app with HTML type characters in the Guid (or what passes as the Guid).http://stackoverflow.com/questions/648714/kill-a-blocked-process-in-a-database/648990#648990Comment by Leo Moore on Kill a blocked process in a databaseLeo Moore2009-03-16T08:55:12Z2009-03-16T08:55:12ZAgreed, but it all depends on what you need. http://stackoverflow.com/questions/648714/kill-a-blocked-process-in-a-database/648946#648946Comment by Leo Moore on Kill a blocked process in a databaseLeo Moore2009-03-16T08:48:46Z2009-03-16T08:48:46ZIt depends on what you want to do. Remember the purpose of this could be be to do simple data processing for reporting purposes. You should not assume that it requires an Atomic transaction. If so, I suggest you use the SQL Server Broker.http://stackoverflow.com/questions/627918/am-i-safe-against-sql-injection/628199#628199Comment by Leo Moore on Am I safe against SQL injection Leo Moore2009-03-15T19:44:02Z2009-03-15T19:44:02ZNo offence taken LFSR. I appreciate the info. Knowledge is always a good thing and your point is a good one.http://stackoverflow.com/questions/115361/what-is-the-best-way-to-handle-incoming-sms-messages/647930#647930Comment by Leo Moore on What is the best way to handle incoming SMS messages?Leo Moore2009-03-15T19:35:06Z2009-03-15T19:35:06ZThanks I'll have a look. Its the kind of solution I need to implement as my app needs to be able to handle received messages and not send any messages.http://stackoverflow.com/questions/639393/html-encoding-in-t-sql/639408#639408Comment by Leo Moore on HTML Encoding in T-SQL?Leo Moore2009-03-12T17:06:38Z2009-03-12T17:06:38ZIn fairness, bobince it was an decent effort and should be not be peanalized for his suggestion. It would work but not in my case.http://stackoverflow.com/questions/639393/html-encoding-in-t-sql/639408#639408Comment by Leo Moore on HTML Encoding in T-SQL?Leo Moore2009-03-12T17:03:53Z2009-03-12T17:03:53ZYou can't always control the database. I can add to it but I can't start changing someones datahttp://stackoverflow.com/questions/639393/html-encoding-in-t-sqlComment by Leo Moore on HTML Encoding in T-SQL?Leo Moore2009-03-12T16:57:25Z2009-03-12T16:57:25ZThe characters are correct in the data and if I change the data I could break the legacy app. So thats not an option.http://stackoverflow.com/questions/639393/html-encoding-in-t-sql/639408#639408Comment by Leo Moore on HTML Encoding in T-SQL?Leo Moore2009-03-12T16:31:27Z2009-03-12T16:31:27ZUnfortunately I don't write to this database.http://stackoverflow.com/questions/639393/html-encoding-in-t-sql/639411#639411Comment by Leo Moore on HTML Encoding in T-SQL?Leo Moore2009-03-12T16:30:50Z2009-03-12T16:30:50ZThanks but unfortunatly the data is returned in a datatable which is then assigned to a datasource. I suppose I could edit the returned datatable row-by-row but is there a better wayhttp://stackoverflow.com/questions/628185/do-you-think-compiled-languages-have-reached-their-eol/628283#628283Comment by Leo Moore on Do you think compiled languages have reached their EOL?Leo Moore2009-03-09T23:55:53Z2009-03-09T23:55:53ZIt still doesn't change my point about performance and security. And of course there are compiled languages, the question is what level of compilation, machine code, assembly, p-code or source text. As far as I know most, if not all, the dynamic languages are interpreted.http://stackoverflow.com/questions/627918/am-i-safe-against-sql-injection/628199#628199Comment by Leo Moore on Am I safe against SQL injection Leo Moore2009-03-09T22:11:45Z2009-03-09T22:11:45ZOk, point taken, so check for invalid chars in the input and skip processing if anything invalid is entered.