User HollyStyles - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T05:23:22Zhttp://stackoverflow.com/feeds/user/1166http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1803455/net-datetime-object-string-format2.NET DateTime object string formatHollyStyles2009-11-26T12:40:27Z2009-11-26T15:02:37Z
<p>This has got me really flumoxed!</p>
<ol>
<li>In the datalayer ADO.NET connects to SQL Server 2008, Default language for the login is 'british'</li>
<li>Selects a DateTime column into a dataview and returns it.</li>
<li>aspx page databinds </li>
<li>this: <%# String.Format("{0:MMM/yyyy}", Eval("dbPeriodFrom")) %></li>
</ol>
<p>The database returns 2009/10/01 (This is yyyy/MM/dd)
The result of step 4 is Jan2009 ????</p>
<p>The regional settings of the web server is United Kingdom
There is no <globalization... section in machine.config
The NET globalisation in IIS is set to uiCulture=en culture=en-GB
I even set it in the web.config for the site</p>
<p>This is a classic "Works on my dev machine.." But, borked when deployed to production scenario.
What could I possibly have missed?</p>
<p><strong>EDIT</strong></p>
<p>So it appears the login used by the ASP.NET Application to connect to SQl Server 2008 is getting a US datetime, even though in the properties for the login, the default language is set to 'British English'. </p>
<p>The problem occurs in TSQL:</p>
<pre><code>SELECT
DATEPART(month, CAST('2009.02.01' AS DATETIME))
,DATEPART(month, CONVERT(DATETIME, '2009.02.01', 102))
</code></pre>
<p>OUTPUT for windows integrated login (Administrator) with default language set to 'English'</p>
<p>2 2</p>
<p>OUTPUT for SQL Server login used by ASP.NET with default language set to 'British English'</p>
<p>1 2</p>
http://stackoverflow.com/questions/1715226/how-to-prevent-password-getting-reset-often-whenever-the-ajax-is-called/1715250#17152500Answer by HollyStyles for How to prevent password getting reset often whenever the ajax is called?HollyStyles2009-11-11T13:43:53Z2009-11-26T13:04:50Z<p>Sounds like you need to make the resources the ajax is requesting public so they don't require authentication.</p>
<p>When an HTML <input type="password".. element is rendered after a post back (even an ajax post) it will be empty. This is by design for security.</p>
<p>You can hack around the issue, but it leaves the users password in plain text in the HTML where it is vulnerable.</p>
<p>If the risk is considered low enough for your project this is how you get around it in ASP.NET in the Page_Load event handler:</p>
<pre><code> txtPassword.Attributes.Add("value", txtPassword.Text);
txtVerifyPassword.Attributes.Add("value", txtVerifyPassword.Text);
</code></pre>
<p>If you do this though when retreiving the value use:</p>
<pre><code> string password = txtPassword.Attributes["value"];
</code></pre>
<p>Instead of:</p>
<pre><code> string password = txtPassword.Text;
</code></pre>
http://stackoverflow.com/questions/1205740/how-can-i-convince-my-co-programmers-not-to-do-paranoid-just-to-be-sure-programm/1205946#12059462Answer by HollyStyles for How can I convince my co-programmers not to do paranoid "just to be sure programming"?HollyStyles2009-07-30T11:15:36Z2009-11-12T20:26:09Z<p>The first example provided is a classic case of <a href="http://www.pragprog.com/the-pragmatic-programmer/extracts/coincidence" rel="nofollow">Programming by coincidence</a> so there's your ammo against that one.</p>
<p>Case 2 and 3 are just silly in most contexts, unless they're test cases for some beta programming language or something in which the implementation of ABS and boolean may have undefined behaviour.</p>
http://stackoverflow.com/questions/1708547/asp-net-mvc-update-webpage-from-server/1708607#17086070Answer by HollyStyles for asp.net mvc update webpage from serverHollyStyles2009-11-10T15:01:47Z2009-11-10T15:01:47Z<p>Use ajax to poll the server for new content or use <a href="http://www.codeproject.com/KB/aspnet/wxv%5Fcomet.aspx" rel="nofollow">comet</a></p>
<p>Neither are particularly beautiful solutions, but the web is "connectionless" for now but there are ways round it.</p>
http://stackoverflow.com/questions/1707145/edit-all-views-and-stored-precedures-find-and-replace/1707285#17072850Answer by HollyStyles for Edit all views and stored precedures, find and replace?HollyStyles2009-11-10T11:27:14Z2009-11-10T13:35:11Z<p>You need to look at sysobjects and syscomments, the text of views and stored procedures are in syscomments. Their types V = View and P = Procedure are in sysobjects</p>
<pre><code>/*Search Stored Procedure and View Text*/
declare @searchString varchar(100)
SELECT @searchString = 'X United Kingdom'
SELECT Distinct
SO.Name, SC.[text]
FROM
sysobjects SO (NOLOCK)
INNER JOIN syscomments SC (NOLOCK) on SO.Id = SC.ID
AND SO.Type IN ('P', 'V')
AND SC.Text LIKE '%' + @searchString + '%'
</code></pre>
<p>Unfortunately you can't update system catalogs :(
So the only easy way to do it is to use the Script Generator and then search and replcae in your favourite text editor.</p>
<p>EDIT:
I had posted a script that generated ALTER statements, but truncation of a looong procedure and that syscomments is deprecated etc... etc.. I rescinded this part of my answer.</p>
http://stackoverflow.com/questions/1707326/define-variable-to-use-with-in-operator-t-sql/1707375#17073750Answer by HollyStyles for Define variable to use with IN operator (T-SQL)HollyStyles2009-11-10T11:44:19Z2009-11-10T12:05:58Z<p>There are two ways to tackle dynamic csv lists for TSQL queries:</p>
<ol>
<li><p>Using an inner select</p>
<p>SELECT * FROM myTable WHERE myColumn in (SELECT id FROM myIdTable WHERE id > 10)</p></li>
<li><p>Using dynamically concatenated TSQL</p>
<p>DECLARE @sql varchar(max)<br>
declare @list varchar(256)<br>
select @list = '1,2,3'<br>
SELECT @sql = 'SELECT * FROM myTable WHERE myColumn in (' + @list + ')'</p>
<p>exec sp_executeSQL @sql</p></li>
</ol>
<p>A possible third option is table variables. If you have SQl Server 2005 you can use a table variable. If your on Sql Server 2008 you can even pass whole table variables in as a parameter to stored procedures and use it in a join or as a subselect in the IN clause.</p>
<p>3.</p>
<pre><code>DECLARE @list TABLE (Id INT)
INSERT INTO @list(Id)
SELECT 1 UNION ALL SELECT 2 UNION ALL SELECT 3 UNION ALL SELECT 4
SELECT
*
FROM
myTable
JOIN @list l ON myTable.myColumn = l.Id
SELECT
*
FROM
myTable
WHERE
myColumn IN (SELECT Id FROM @list)
</code></pre>
http://stackoverflow.com/questions/1686831/ssis-loop-a-list-of-connection-strings-in-a-master-package-executing-two-other0SSIS Loop a list of connection strings in a master package, executing two other packages for each connection stringHollyStyles2009-11-06T10:49:59Z2009-11-06T15:48:52Z
<p>I am trying to figure out how to loop a list of connection strings in an SSIS package. MSDN suggests I can have an Execute SQL task generate a result set into a variable and use a For Each task to loop the results, but it's none too clear to me exactly how to create this.</p>
<p>So I have a table with a single nvarchar column with a list of Sql Server OLEDB Connection Strings in it, all that actually differs between them is the database name.</p>
<p>I want to iterate that list in the main package executing two other packages for each connection:</p>
<p>Foreach connstring
Pass connstring to package 1 and execute it
Pass connstring to package 2 and execute it
next connstring</p>
<p>I am trying to use the ForEachLoop task in a SSIS Project in visual studio and the ExecutePackage task but the ForEachLoop task properties and Expressions I am finding hard to make sense of at all.</p>
<p><strong>EDIT:</strong></p>
<p>Ok I have figured out how to set the connection manager ConnectionString property to an expression based on a variable. Create a string variable, then select the connection in connection manager and in the properties window click the elipses for the Expressions property and select the ConnectionString property in the dialog, then concatenate the database name variable into the connection string in the expression editor.</p>
<p>All I need now is to figure out how to set another variable to be a string array of database names, that are configurable in the dtconfig XML file.</p>
<p><strong>EDIT:</strong></p>
<ul>
<li>anyone know how to set an SSIS
Package variable to be a string array
read in from the dtConfig XML file
for the package?</li>
</ul>
http://stackoverflow.com/questions/1686831/ssis-loop-a-list-of-connection-strings-in-a-master-package-executing-two-other/1687699#16876990Answer by HollyStyles for SSIS Loop a list of connection strings in a master package, executing two other packages for each connection stringHollyStyles2009-11-06T13:47:22Z2009-11-06T15:48:52Z<p>What I did in the end:</p>
<ul>
<li>Create a Execute Sql Task</li>
<li>Set the SQL Statement: SELECT DatabaseName FROM tbDataBaseNames</li>
<li>Set the ResultSet property to Full result set</li>
<li>In the Result Set tab set Result Name to 0 and select my System.Object variable (this will end up holding an ADO Recordset)</li>
<li>IN the ForEachLoop container choose the Foreach ADO Enumerator</li>
<li>Select my System.Object variable as the ADO Object Source</li>
<li>In the Variable Mappings tab select my String variable (This will receive the value read from each row as it loops)</li>
</ul>
http://stackoverflow.com/questions/484248/visual-studio-appears-to-randomly-adopt-american-keyboard-layout2Visual Studio appears to randomly adopt american keyboard layoutHollyStyles2009-01-27T17:03:40Z2009-09-17T19:15:01Z
<p>Gah! this is really causing me hassle today. Suddenly without warning '@' (at symbol) and '"' (double quote) are trading places on my keyboard but ONLY in Visual Studio 2008 !!! </p>
<p>I can't seem to find anything in help or online to explain/remedy this. Is there some keyboard shortcut I am inadvertantly executing?? </p>
<p>I rebooted my PC and it went away for an hour or two and then suddenly came back.</p>
<p>Oh the insanity :(</p>
http://stackoverflow.com/questions/1032255/linq-to-sql-basic-insert-throws-an-attempt-has-been-made-to-attach-or-add-an-ent1LINQ to SQL Basic insert throws: An attempt has been made to Attach or Add an entity that is not new, perhaps having been loaded from another DataContext. This is not supported.HollyStyles2009-06-23T12:30:34Z2009-09-15T03:19:01Z
<p>I am trying to insert a record. This code worked but has stopped working I don't know why. Here is the code:</p>
<pre><code> using (SAASDataContext dc = new SAASDataContext())
{
tblAssessment a2 = new tblAssessment();
a2.AssessmentCentreId = centreId;
a2.AttemptNumber = 1;
dc.tblAssessments.InsertOnSubmit(a2);
dc.SubmitChanges();
CurrentAssessmentId = a2.AssessmentId;
}
</code></pre>
<p>The code compiles but throws the exception in the title of this question on the dc.SubmitChanges(); line.</p>
<p>Notes:
AssessmentCentreId is a foreign key on tblCentre, centreId is a valid existing centre id,
AssessmentCentreId and AttemptNumber are the only not null fields all other columns allow nulls.</p>
<p>I have googled but all the results seem to pertain to people trying to attach entities pulled from other disconnected DataContext's I'm not doing that so I'm stumped.</p>
<p><strong>UPDATE:</strong></p>
<p>Adding </p>
<pre><code>dc.DeferredLoadingEnabled = false;
</code></pre>
<p>at the top of the using block makes it work, but I'd like to know why coz I have no idea at the moment sufficiently advanced technology being indistinguishable from magic right now :)</p>
http://stackoverflow.com/questions/1341708/multiple-transactionscope-problem/1341803#13418030Answer by HollyStyles for Multiple TransactionScope problemHollyStyles2009-08-27T15:24:01Z2009-08-27T15:57:55Z<p>You have two nested TransactionScope objects??</p>
<p>And no try catch block.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx</a></p>
<p>I think you'll find the specific answer is that you cannot complete a transaction that hasn't begun anything, it's in an invalid state. Do you actually have any code where your LINQ comments are? does a connection actually get established?</p>
http://stackoverflow.com/questions/1340901/asp-net-gridview-checkbox-selection/1340933#13409331Answer by HollyStyles for asp.net gridview checkbox selectionHollyStyles2009-08-27T13:00:32Z2009-08-27T14:53:20Z<p>Try this:</p>
<pre><code>CheckBox chkBx = sender as CheckBox;
</code></pre>
<p>Rather than iterate all the rows. </p>
<p>I haven't used CheckBox's in a GridView in this way myself. Usually I would use the GridView's OnRowCommand event instead and use the RowIndex or CommandArgument value to update the database.</p>
<p>Thinking about it OnRowcommand could be tricky for a CheckBox to fire, a better solution might be sticking with the CheckChanged event of the checkbox and navigate up to the GridViewRow serverside using controls NameingContainer. Something like:</p>
<pre><code>GridViewRow row = chkBx.NamingContainer as GridViewRow;
</code></pre>
<p>I'm assuming the goes CheckBox => Cell => Row if you Google ASP.NET NamingContainer you'll get some more specifics.</p>
http://stackoverflow.com/questions/1341000/when-working-with-a-repeater-would-you-declare-a-new-datacontext-on-every-itemdat/1341032#13410321Answer by HollyStyles for when working with a repeater would you declare a new datacontext on every itemdatabound?HollyStyles2009-08-27T13:15:36Z2009-08-27T13:15:36Z<p>Cache the result set from the DB as a DataTable, List or whatever in a class member variable and bind each drop down from that, this way only hit DB the one time.</p>
http://stackoverflow.com/questions/1340077/i-have-a-code-below-works-great-in-ie-and-opera-but-does-not-work-at-all-in-fi/1340122#13401220Answer by HollyStyles for I have a code below - works great in IE and Opera, but does not work at all in Firefox / Netscape. Any ideas? HollyStyles2009-08-27T10:17:36Z2009-08-27T10:46:47Z<p>I think you need something like:</p>
<pre><code>document.getElementById("printForm").submit();
</code></pre>
<p>Referencing the form directly from the window object is not standard, well certainly not supported across all browsers.</p>
http://stackoverflow.com/questions/1243971/sql-server-analysis-services-2008-dynamic-dimension-security-using-mdx-expression0Sql Server analysis Services 2008 Dynamic dimension security using MDX expressionHollyStyles2009-08-07T10:06:12Z2009-08-24T08:33:56Z
<p><strong>Some dimension tables in my warehouse:</strong></p>
<pre><code>DML
Site
Id bigint
Name nvarchar(256)
Primary key (Id)
DATA
SiteId Name
2 Site 2
3 Site A
DML
UserSite
Username nvarchar(256)
SiteId bigint
Primary key (Username, SiteId)
Foreign key (SiteId) referrences Site(Id)
DATA
Username SiteId
EMSUser1 2
EMSUser1 3
EMSUser2 3
</code></pre>
<p><strong>My SSAS Project:</strong>
I have used these two dimension tables in one dimension in a BIDS project, created using the dimension wizard.
The usernames relate to two local windows user accounts on the SSAS Server, they are members of a local windows
group ReportBrowsers. I have created a Role for that group in BIDS and added an MDX Expression to the dimension Data tab
for this dimension in the AllowedSet box for the Username attribute:</p>
<pre><code>STRTOMEMBER("[UserSiteSite].[Username].["+Trim(Mid( UserName, InStr(1, UserName, "\")+ 1,128))+"]")
</code></pre>
<p>This dimension is used in a cube that's all processed and deployed. I then have an SSRS Report based on that cube.</p>
<p><strong>My intention:</strong>
What I'm trying to do is take the logged in user currently browsing SSRS and remove the "<domain>\" part of the string returned
effectively filtering the results to just the sites that username has a record for.</p>
<p>So for EMSUser1 I should see records for both sites, but it appears to be allowing the first one only ("Site 2" with Id 2)
There's no sign of "Site A" even though records exist for that site in the fact table.</p>
<p>I've been trawling through Analysis Services 2008 unleashed and the step by step book and all over blogs etc.
I just can't quite grok the internal workings to achieve my goal.</p>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/1243971/sql-server-analysis-services-2008-dynamic-dimension-security-using-mdx-expression/1321140#13211400Answer by HollyStyles for Sql Server analysis Services 2008 Dynamic dimension security using MDX expressionHollyStyles2009-08-24T08:33:56Z2009-08-24T08:33:56Z<p>Well it's been some time now. I don't have the complete answer even now but I did get some help else where that has lead me to a solution. The details can be found <a href="http://social.msdn.microsoft.com/Forums/en-US/sqlanalysisservices/thread/dddb30cf-bba8-4403-a0b7-a41210ba24c0" rel="nofollow">here</a>.</p>
<p>There are a lot of ways to solve this kind of scenario. I feel there may still be a better one for me, but I have something that at least works. Basically create a seperate class library with a static class and function that makes it's own connection to the database and selects out the allowed set. If you reference the Microsoft.AnalysisServices
and Microsoft.AnalysisServices.AdomdServer namespaces you can return a 'Set' object. You can then call this function in the Role objects Dimension data advance tab:</p>
<pre><code>MyAssembly.MyMethod(UserName)
</code></pre>
http://stackoverflow.com/questions/1193774/reporting-tools-and-architecture/1193802#11938020Answer by HollyStyles for Reporting tools and architectureHollyStyles2009-07-28T12:33:40Z2009-07-28T12:33:40Z<p>As you have tagged ASP.NET, SQL Server Reporting Services and/or Analysis Services might be what you're looking for. Can you be a bit more specific as to what the requirements are? Maybe some third party charting tool is all you need like Dundas or ChartFX. </p>
http://stackoverflow.com/questions/1165762/need-help-in-radiobutton-within-gridview/1165902#11659021Answer by HollyStyles for Need help in radiobutton within gridviewHollyStyles2009-07-22T14:55:02Z2009-07-22T14:55:02Z<p>Sounds like the classic master/detail pattern see here:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/aa581796.aspx" rel="nofollow">Tutorial 10: Master/Detail Using a Selectable Master GridView with a Details DetailView</a></p>
<p>You are fighting the intended workings of ASP.NET databound controls by using radio buttons. I don't like having select links either they're not exactly Web 2.0! but they can be quite easily replaced with a row click by doing this (or variation of same):</p>
<p><a href="http://www.geekzilla.co.uk/view9FC28EE6-ACB0-4F51-BFE4-38B0B10134D5.htm" rel="nofollow">Select a row in an asp:GridView without using a Select Command</a></p>
http://stackoverflow.com/questions/181912/in-a-layered-design-with-a-separate-dataaccess-layer-in-net-where-should-connect3In a layered design with a separate DataAccess layer in .NET where should connection string be managed?HollyStyles2008-10-08T09:14:41Z2009-07-21T16:40:16Z
<p>There is a long running habit here where I work that the connection string lives in the web.config, a Sql Connection object is instantiated in a using block with that connection string and passed to the DataObjects constructor (via a CreateInstance Method as the constructor is private). Something like this:</p>
<pre><code>using(SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString))
{
DataObject foo = DataObject.CreateInstance(conn);
foo.someProperty = "some value";
foo.Insert();
}
</code></pre>
<p>This all smells to me.. I don't know. Shouldn't the DataLayer class library be responsible for Connection objects and Connection strings? I'd be grateful to know what others are doing or any good online articles about these kind of design decisions.</p>
<p>Consider that the projects we work on are always Sql Server backends and that is extremely unlikely to change. So factory and provider pattern is not what I'm after. It's more about where responsibility lies and where config settings should be managed for data layer operation.</p>
http://stackoverflow.com/questions/1137909/how-do-i-update-two-tables-that-have-a-reference-table-in-sql-server/1138027#11380270Answer by HollyStyles for How do I update two tables that have a reference table in SQL Server?HollyStyles2009-07-16T14:31:19Z2009-07-16T15:58:31Z<p>That should really be an atomic unit of work to maintain your data integrity!!! When updating more than one table and they must be kept in sync use BEGIN and COMMIT/ROLLBACK TRAN or if you have Sql Server 2008 use the new TRY CATCH syntax</p>
<pre><code>BEGIN TRAN
BEGIN TRY
UPDATE dbo.Users
SET Flags = @var
WHERE UserName = 'UserA'
UPDATE dbo.Groups
SET Flags = @var
FROM dbo.Users u INNER JOIN dbo.UsersGroups ug ON u.UserID = ug.UserID
INNER JOIN dbo.Groups g ON g.GroupID = ug.GroupID
WHERE u.UserName = 'UserA'
END TRY
BEGIN CATCH
IF @@TRANCOUNT > 0
ROLLBACK TRANSACTION;
END CATCH
IF @@TRANCOUNT > 0
COMMIT TRAN
</code></pre>
<p>As an aside if your data is denormalised for performance then this is your best solution. If that's not the case I recommend you ditch one of the columns. (Waits for typical "It's not my schema I inherited it.. legacy blah... he he :))</p>
<p>PS the code inside the transaction block is flagrantly copy/pasted from Chris' answer.</p>
<p><strong>EDIT</strong></p>
<p>There's a lot of comments about ambiguous column names, but there's nothing wrong with the TSQL here. Here is an entire DML and QUERY that I have tested in MSSMS:</p>
<pre><code>IF NOT EXISTS (SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE
TABLE_NAME='Users')
BEGIN
CREATE TABLE Users
(
UserID INT IDENTITY(1,1) PRIMARY KEY,
UserName NVARCHAR(32) NOT NULL,
RealName NVARCHAR(64) NOT NULL,
Flags NVARCHAR(16) NOT NULL
)
END
GO
IF NOT EXISTS (SELECT ix.name FROM sys.indexes ix WHERE ix.name='IX_Users_UserName')
BEGIN
CREATE UNIQUE INDEX IX_Users_UserName ON Users(UserName)
END
GO
IF NOT EXISTS (SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME='Groups')
BEGIN
CREATE TABLE Groups
(
GroupID INT IDENTITY(1,1) PRIMARY KEY,
GroupName NVARCHAR(32) NOT NULL,
Flags NVARCHAR(16) NOT NULL
)
END
GO
IF NOT EXISTS (SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME='UsersGroups')
BEGIN
CREATE TABLE UsersGroups
(
UserID INT NOT NULL,
GroupID INT NOT NULL,
CONSTRAINT PK_UsersGroups PRIMARY KEY CLUSTERED (UserID, GroupID),
CONSTRAINT FK_UsersGroups_UserID FOREIGN KEY (UserID) REFERENCES Users(UserID),
CONSTRAINT FK_UsersGroups_GroupID FOREIGN KEY (GroupID) REFERENCES Groups(GroupID),
)
END
GO
DECLARE @count INT = (SELECT COUNT(*) FROM Users)
IF @count = 0
BEGIN
INSERT INTO Users(UserName, RealName, Flags)
SELECT 'USERA', 'User A', 'Flags A'
UNION ALL
SELECT 'USERB', 'User B', 'Flags B'
END
SELECT @count = (SELECT COUNT(*) FROM Groups)
IF @count = 0
BEGIN
INSERT INTO Groups(GroupName, Flags)
SELECT 'Group A', 'Flags A'
UNION ALL
SELECT 'Group B', 'Flags B'
END
SELECT @count = (SELECT COUNT(*) FROM UsersGroups)
IF @count = 0
BEGIN
INSERT INTO UsersGroups(GroupID, UserID)
SELECT 1, 1
UNION ALL
SELECT 2, 2
END
GO
BEGIN TRAN
BEGIN TRY
DECLARE @var NVARCHAR(16)
SET @var = 'New Flags A'
UPDATE dbo.Users
SET Flags = @var
WHERE UserName = 'UserA'
UPDATE dbo.Groups
SET Flags = @var
FROM dbo.Users u INNER JOIN dbo.UsersGroups ug ON u.UserID = ug.UserID
INNER JOIN dbo.Groups g ON g.GroupID = ug.GroupID
WHERE u.UserName = 'UserA'
END TRY
BEGIN CATCH
IF @@TRANCOUNT > 0
ROLLBACK TRANSACTION;
END CATCH
IF @@TRANCOUNT > 0
COMMIT TRAN
SELECT Flags FROM Users
SELECT Flags FROM Groups
</code></pre>
http://stackoverflow.com/questions/1137238/asp-net-ajax-suppress-onbeforeunload-for-ajax-requests-from-updatepanel0ASP.NET AJAX suppress onbeforeunload for AJAX requests from updatepanelHollyStyles2009-07-16T12:31:03Z2009-07-16T13:32:45Z
<p>I am hooking the window.onbeforeunload event in an aspx page. I need that <em>not</em> to fire if I page a GridView that's in an UpdatePanel on the same page. </p>
<p>I have tried hooking the PageRequestManager's initializeRequest event but this fires too late, i.e. after onbeforeunload. I have also tried checking PageRequestManager.get_isInAsyncPostBack() in my onbeforeunload handler but that returns false too, gah!</p>
<p>I have read this SO thread :</p>
<p><a href="http://stackoverflow.com/questions/537702/can-i-prevent-window-onbeforeunload-from-being-called-when-doing-an-ajax-call">537702</a></p>
<p>But that doesn't make sense to me other than GridView page links cause an unload whereas buttons in a GridView column do not? Anybody know how to solve this? I'm guessing only way is to attach client-side click handler to all the GridView's page anchors to set some boolean flag, but I'm not sure how to accomplish that in a reliable manner.</p>
http://stackoverflow.com/questions/1137238/asp-net-ajax-suppress-onbeforeunload-for-ajax-requests-from-updatepanel/1137622#11376220Answer by HollyStyles for ASP.NET AJAX suppress onbeforeunload for AJAX requests from updatepanelHollyStyles2009-07-16T13:32:45Z2009-07-16T13:32:45Z<p>Ok JQuery to the rescue!</p>
<pre><code><script type="text/javascript">
var flag = true;
window.onbeforeunload = beforeUnloading;
var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.add_pageLoaded(initPagers);
function initPagers() {
$(".gridViewPagerStyle").click(function() { flag = false; });
}
function beforeUnloading(){
if(flag)
return "unloading";
flag = true;
}
</script>
:
:
<asp:GridView ... PagerStyle-CssClass="gridViewPagerStyle" ... />
:
:
</code></pre>
<p>Set a Css class for all pager links, use that to append javascript click handlers that set a flag when clicked, use flag to avoid onbeforeunload</p>
http://stackoverflow.com/questions/1124772/multiple-search-option-in-sql-server-2005/1124795#11247953Answer by HollyStyles for Multiple Search Option in SQL SERVER 2005HollyStyles2009-07-14T11:27:10Z2009-07-14T11:27:10Z<p>You will need to create a TSQL statement like this:</p>
<pre><code>SELECT
*
FROM
tblname
WHERE
column_name like 'Test1%'
OR
column_name like 'Test2%'
</code></pre>
<p>You need an OR for each case</p>
http://stackoverflow.com/questions/1044742/getting-ie6-7-8-to-reliably-download-office-documents-over-ssl-from-our-site0Getting IE6,7,8 to reliably download office documents over ssl from our siteHollyStyles2009-06-25T15:56:07Z2009-06-25T16:00:54Z
<p>I have an ASP.NET web application the entire site is browsed over HTTPS using a valid commercial certificate. In one part of the application it is possible to download an Excel spreadsheet.
The download is initiated from a POST (PostBack from a LinkButton)</p>
<p>The Response is cleared (Response.Clear(), Response.BinaryWrite(bytes[])) blah etc.. like we've done in a thousand projects that all work fine, Correct content headers are set and everything. the only difference here is SSL but I can't see how that's related. Yes there are loads of links about cache headers that prevent IE puting the file to temporary internet files so then the relevant office program can be launched to open it etc etc yadda... I've read all those. I have verified the cache headers with fiddler and LiveHeaders(FF Extension) and can confirm "Cache: private;" is what's being sent in the response from both the production site and my local dev set-up.</p>
<p>If I set up an SSL certificate on my local IIS instance and run the project I can open or save the exact same spreadsheet with no problems using IE ( I know there's nothing wrong with the live production file cos FireFox downloads it no sweat, what a surprise!) However, from the production web-server IE6 says the remote host disconected and IE7 just sits there downloading till the end of time (real helpful!) Gah i'm tearing me hair out</p>
http://stackoverflow.com/questions/690005/reporting-services-rangebar-chart-x-axis-labels-time-portion-only-of-a-datetime-v0Reporting Services RangeBar Chart X-Axis labels time portion only of a datetime valueHollyStyles2009-03-27T14:32:27Z2009-06-05T16:39:37Z
<p>I have a Business Intelligence project in Visual Studio 2008. I have added a report and placed a RangeBar chart in it. The dataset is as follows:</p>
<pre><code>dbName dbStartTime dbEndTime
-------------- ----------------------- -----------------------
Unit2-Room2 2009-02-01 09:00:00.000 2009-02-01 13:30:00.000
Unit2-Room1 2009-02-01 09:00:00.000 2009-02-01 13:00:00.000
Unit1-Room2 2009-02-01 17:00:00.000 2009-02-01 19:30:00.000
Unit1-Room2 2009-02-01 10:00:00.000 2009-02-01 15:00:00.000
Unit1-Room2 2009-02-01 10:00:00.000 2009-02-01 15:00:00.000
Unit1-Room2 2009-02-01 10:00:00.000 2009-02-01 15:00:00.000
Unit1-Room1 2009-02-01 14:00:00.000 2009-02-01 16:30:00.000
Unit1-Room1 2009-02-01 14:00:00.000 2009-02-01 16:30:00.000
Unit1-Room1 2009-02-01 09:00:00.000 2009-02-01 13:00:00.000
Unit1-Room1 2009-02-01 09:00:00.000 2009-02-01 13:00:00.000
</code></pre>
<p>dbName is the catagory field, MIN(dbStart) and MAX(dbEnd) fields are the high/low values for the series.The values are always for one day only.</p>
<p>How can I get the labels in the X_Axis to display just the time portion of the values? </p>
http://stackoverflow.com/questions/950179/i-want-to-develop-a-web-site-like-stackoverflow-but-ive-never-done-anything-for/950237#9502370Answer by HollyStyles for I want to develop a web site like StackOverflow, but I've never done anything for web. How can I do this?HollyStyles2009-06-04T12:29:27Z2009-06-04T12:29:27Z<p>You got a couple of options:</p>
<ol>
<li>Get an out of the box forum engine (Examples phpBB, VBulletin)</li>
<li>Get a web development framework and do it yourself (Examples PHP, ASP.NET, Ruby on Rails)</li>
</ol>
<p>Then you'll need a domain host (just Google for domain hosting) to run your website on.</p>
<p>The finer details are beyond the scope of this post, there are many books on the subject depending on what option you choose above, so final step is to search for website tutorials, search online bookstores or visit your library.</p>
http://stackoverflow.com/questions/949533/determine-sql-server-version-of-linked-server/949538#9495380Answer by HollyStyles for Determine SQL Server version of linked serverHollyStyles2009-06-04T09:43:22Z2009-06-04T09:43:22Z<p>SELECT @@VERSION</p>
<p>Returns a string detailing the version of the server.</p>
http://stackoverflow.com/questions/839748/last-added-records-in-sql-server-table/839795#8397950Answer by HollyStyles for Last added records in SQL-Server tableHollyStyles2009-05-08T13:28:17Z2009-05-08T13:28:17Z<p>For SqlServer you would nead a sql log viewer/analyser such as the one in the Red Gate suite of tools.</p>
http://stackoverflow.com/questions/838770/how-do-you-troubleshoot-with-works-on-my-machine-scenarios/838792#8387920Answer by HollyStyles for how do you troubleshoot with "works on my machine" scenariosHollyStyles2009-05-08T08:27:18Z2009-05-08T08:27:18Z<p>IE Tester is a good tool for this kind of troubleshooting. If you need to test lots of browsers then virtual machines like Virtual PC are your best bet so you can have many client set-ups on your test server.</p>
http://stackoverflow.com/questions/834339/access-list-box-items-added-on-client-side/834459#8344592Answer by HollyStyles for Access list box items added on client sideHollyStyles2009-05-07T12:47:28Z2009-05-07T12:47:28Z<p>Ah when abstractions leek :)</p>
<p>Web server controls are serialised to view state before the response is sent, the control is recreated on postback and the options all put back from view state.</p>
<p>When you add option items client side they are not added to viewstate. The only way is to use your own hidden field to serialise client side additions and read them on postback or ajax the additions serverside.</p>
http://stackoverflow.com/questions/1803455/net-datetime-object-string-format/1803547#1803547Comment by HollyStyles on .NET DateTime object string formatHollyStyles2009-11-26T14:29:51Z2009-11-26T14:29:51ZI already did that. However I did it again this time I connected as the user that ASP.NET uses to connect. and I get a different output. The login has default language set to british english. It's not an NT Account it's a SQl Server login.http://stackoverflow.com/questions/1803455/net-datetime-object-string-format/1803547#1803547Comment by HollyStyles on .NET DateTime object string formatHollyStyles2009-11-26T13:32:03Z2009-11-26T13:32:03ZI checked that and it's correct. United kingdom.http://stackoverflow.com/questions/1803455/net-datetime-object-string-format/1803488#1803488Comment by HollyStyles on .NET DateTime object string formatHollyStyles2009-11-26T13:18:57Z2009-11-26T13:18:57ZIt's a SQL Datetime in the select and it remains unchanged, the ADO code uses a SqlAdapter to Fill a DataTable and returns it's default view. I understand on the wire datetimes are seconds since some startdate. I've never had this much trouble with datetimes it's so weird.
http://stackoverflow.com/questions/1715226/how-to-prevent-password-getting-reset-often-whenever-the-ajax-is-called/1715250#1715250Comment by HollyStyles on How to prevent password getting reset often whenever the ajax is called?HollyStyles2009-11-26T13:05:39Z2009-11-26T13:05:39ZWell there you go then. I Have extended my answer, hope this helps.http://stackoverflow.com/questions/1715226/how-to-prevent-password-getting-reset-often-whenever-the-ajax-is-called/1715250#1715250Comment by HollyStyles on How to prevent password getting reset often whenever the ajax is called?HollyStyles2009-11-12T10:36:15Z2009-11-12T10:36:15ZPassword fields are always blanked out after an HTTP POST operation.http://stackoverflow.com/questions/1715226/how-to-prevent-password-getting-reset-often-whenever-the-ajax-is-called/1715250#1715250Comment by HollyStyles on How to prevent password getting reset often whenever the ajax is called?HollyStyles2009-11-12T10:35:04Z2009-11-12T10:35:04ZCode isn't the problem here. Is your password field inside the update panel?http://stackoverflow.com/questions/1707145/edit-all-views-and-stored-precedures-find-and-replace/1707285#1707285Comment by HollyStyles on Edit all views and stored precedures, find and replace?HollyStyles2009-11-10T12:32:50Z2009-11-10T12:32:50Z@Saar - and truncation thpt....http://stackoverflow.com/questions/1707145/edit-all-views-and-stored-precedures-find-and-replace/1707285#1707285Comment by HollyStyles on Edit all views and stored precedures, find and replace?HollyStyles2009-11-10T12:14:09Z2009-11-10T12:14:09Z@Saar - Hmm yeah the ALTER/CREATE thing CREATE is already in syscomments corrected. Not sure how any views and procedures with escaped quotes might turn out too.http://stackoverflow.com/questions/1707326/define-variable-to-use-with-in-operator-t-sql/1707375#1707375Comment by HollyStyles on Define variable to use with IN operator (T-SQL)HollyStyles2009-11-10T11:51:44Z2009-11-10T11:51:44Z@Vilx - do you mean for setting the variable @list? if so set is fine but only sets one variable, with select you can populate several variables in one statement. As there's not much between them I'm in the habit of always using SELECT.http://stackoverflow.com/questions/1707326/define-variable-to-use-with-in-operator-t-sql/1707375#1707375Comment by HollyStyles on Define variable to use with IN operator (T-SQL)HollyStyles2009-11-10T11:49:15Z2009-11-10T11:49:15Z@badbod99 - Thats a generalisation and all generalisations are wrong :) I have offered alternativeshttp://stackoverflow.com/questions/1707145/edit-all-views-and-stored-precedures-find-and-replace/1707203#1707203Comment by HollyStyles on Edit all views and stored precedures, find and replace?HollyStyles2009-11-10T11:35:37Z2009-11-10T11:35:37Z@Saar - your script doesn't search views.http://stackoverflow.com/questions/1686852/cant-connect-to-mysql-for-net-application-deployed-in-wine-using-ubuntuComment by HollyStyles on Can't connect to MySQL for .NET application deployed in Wine using UbuntuHollyStyles2009-11-06T10:59:56Z2009-11-06T10:59:56ZSorry I don't have full answer for you, but from the error it looks like something to do with character encoding of the data maybe. http://stackoverflow.com/questions/71608/how-do-you-set-up-your-net-development-tree/71741#71741Comment by HollyStyles on How do you set up your .NET development tree?HollyStyles2009-09-06T18:01:26Z2009-09-06T18:01:26Zdifferent versions can be shared just fine too, so not including them in the project tree doesn't mean you have to upgrade at all.http://stackoverflow.com/questions/1378843/asp-net-single-and-double-quotes-inside-the-text-property-of-a-literal/1378859#1378859Comment by HollyStyles on ASP.NET: single and double quotes inside the text property of a LiteralHollyStyles2009-09-04T12:32:43Z2009-09-04T12:32:43Z Literal1.Text = System.Web.HttpUtility.HtmlEncode("This is my \"text\", isn't it pretty?");http://stackoverflow.com/questions/1341708/multiple-transactionscope-problem/1341803#1341803Comment by HollyStyles on Multiple TransactionScope problemHollyStyles2009-08-27T15:55:42Z2009-08-27T15:55:42Z@boj: because it has an example of usage with good comments explaining what occurs and when.