User Jason N. Gaylord - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T01:05:44Zhttp://stackoverflow.com/feeds/user/21318http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1759325/gridview-not-rebinding-properly-after-postback0GridView not Rebinding Properly After PostbackJason N. Gaylord2009-11-18T21:49:19Z2009-11-20T16:44:27Z
<p>I have a GridView that has a DataSourceID pointing to an ObjectDataSource. The ObjectDataSource points to a method that returns a LINQ IQueryable by using the TypeName, SelectMethod, and SelectCountMethod properties of the ObjectDataSource control. What happens is that the data loads properly upfront. However, on postback, if I remove the rows from the GridView and try to rebind using the explicit GridView.DataBind(), it doesn't work. I know LINQ is returning the proper rowcount and such because I've called the countmethod and it returns the proper rowcount. Here's a quick example:</p>
<pre><code><asp:GridView ID="TestGridView" runat="server" PageSize="20"
AutoGenerateColumns="false" AllowPaging="true"
AllowSorting="false" DataSourceID="TestDataSource">
<Columns>
...
</Columns>
</asp:GridView>
<asp:ObjectDataSource ID="TestDataSource" runat="server"
EnablePaging="true" SelectCountMethod="GetDetailCount"
SelectMethod="GetDetails" TypeName="MyApp.PageClass" />
</code></pre>
<p>I've tried adding a button and adding the TestGridView.DataBind(); method to that. I've tried adding it to the Page_PreRender event. No matter what I try, it's not working.</p>
<p>As someone suggested below, I've tried moving it to Page_Load as well, and no go. Here's a rough example of my code:</p>
<pre><code>protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
// Set "initial" query parameters, then ...
BindData();
}
}
private void BindData()
{
// EDITED: Removed the code below since I'm not looking to delete the
// rows from the database, but rather get the GridView to rebind
// which its not.
////Remove all current rows from the GridView
//int colCount = TestGridView.Rows.Count;
//for (int x = 1; x <= colCount; x++)
//{
// TestGridView.DeleteRow(x);
//}
// Bind GridView to the ObjectDataSource
TestGridView.DataBind();
}
protected void RegenerateImageButton_Click(object sender, ImageClickEventArgs e)
{
// Set "updated" query parameters, then ...
BindData();
}
</code></pre>
http://stackoverflow.com/questions/1759325/gridview-not-rebinding-properly-after-postback/1771729#17717290Answer by Jason N. Gaylord for GridView not Rebinding Properly After PostbackJason N. Gaylord2009-11-20T16:44:27Z2009-11-20T16:44:27Z<p>After looking at the code behind a bit more, I stumbled across page property values being stored in ViewState. Once I changed it over to Session, they work.</p>
http://stackoverflow.com/questions/1757446/using-t-sql-avg-or-taking-average-after-results-returned-using-linq0Using T-SQL AVG or taking Average after results returned using LINQJason N. Gaylord2009-11-18T16:56:20Z2009-11-18T18:13:35Z
<p>I have a stored procedure that uses a view to pull 6 averages. The SQL database is SQL Server 2000. When I run it in the Query analyzer, it takes roughly 9 seconds. What can I do to get better performance? Should I return the rows using LINQ and determine an average that way? Will it be faster?</p>
<p>Here's an example of my current sproc:</p>
<pre><code>create procedure [TestAvg]
(
@CustomerNumber int
)
as
select
(select AVG(OrderTime) from OrderDetails where ProductID = 12 and DateDiff(day, DateFulfilled, GetDate()) <= 7 and CustomerNumber = @CustomerNumber) as P12D7,
(select AVG(OrderTime) from OrderDetails where ProductID = 12 and DateDiff(day, DateFulfilled, GetDate()) <= 30 and CustomerNumber = @CustomerNumber) as P12D30,
(select AVG(OrderTime) from OrderDetails where ProductID = 12 and DateDiff(day, DateFulfilled, GetDate()) <= 90 and CustomerNumber = @CustomerNumber) as P12D90,
(select AVG(OrderTime) from OrderDetails where ProductID = 16 and DateDiff(day, DateFulfilled, GetDate()) <= 7 and CustomerNumber = @CustomerNumber) as P16D7,
(select AVG(OrderTime) from OrderDetails where ProductID = 16 and DateDiff(day, DateFulfilled, GetDate()) <= 30 and CustomerNumber = @CustomerNumber) as P16D30,
(select AVG(OrderTime) from OrderDetails where ProductID = 16 and DateDiff(day, DateFulfilled, GetDate()) <= 90 and CustomerNumber = @CustomerNumber) as P16D90
</code></pre>
<p>Also, let me clarify the view mentioned above. Since this is SQL Server 2000, I cannot use an indexed view because it does use a subquery. I suppose this can be rewritten to use joins. However, the last time we took a query and rewrote it to use joins, data was missing (because the subquery can return a null value which would omit the entire row).</p>
http://stackoverflow.com/questions/1633563/customizing-freetexttable-in-ms-sql-20000Customizing FreeTextTable in MS SQL 2000Jason N. Gaylord2009-10-27T20:48:39Z2009-11-18T03:20:38Z
<p>I'm looking for answers for the following 2 questions (SQL Server 2000). I have an order info table that is indexed so that I may search data on particular columns. So, an example query I might run is:</p>
<pre><code>SELECT top 50 ft_tbl.*, key_tbl.Rank
from OrderInfo as ft_tbl
INNER JOIN FREETEXTTABLE(OrderInfo, Address1, 'W Main St') as key_tbl
ON ft_tbl.OrderInfoID = key_tbl.[KEY]
order by key_tbl.Rank desc
</code></pre>
<p>What I'd expect is that SQL would pull everything that matches "W Main St" first since that would have the highest rank, then variations following. However, my results aren't exactly what I'm expecting. Here are the Top 8 results ordered by Rank:</p>
<ul>
<li>258 W Main St</li>
<li>4322 N Marshall St </li>
<li>221 Main St</li>
<li>320 Broad St</li>
<li>7 S 3rd St </li>
<li>510 Bauerlein St</li>
<li>175 Main Street </li>
<li>108 Maywood St</li>
</ul>
<p>(I know why this happens now, and am assuming I can fix it with the answer below) </p>
<p>Question: Is there any way to pass in variations where St could be:</p>
<ul>
<li>St</li>
<li>St.</li>
<li>Street</li>
</ul>
<p>And W could be</p>
<ul>
<li>W</li>
<li>W.</li>
<li>West</li>
</ul>
<p>Thanks in advance! (bump)</p>
http://stackoverflow.com/questions/1751232/linq-skip-orderby-and-sql-server-20001LINQ, Skip, OrderBy, and SQL Server 2000Jason N. Gaylord2009-11-17T19:37:27Z2009-11-17T21:03:12Z
<p>I'm accessing a data context object that is auto-generated by using LINQ to SQL. The SQL database is a SQL Server 2000 box. The class I'm working with is a SQL View. I have a statement that is similar to this:</p>
<pre><code>query = _context.OrderDetails
.Where(w => w.Product == "TEST")
.OrderBy(o => o.DateCompleted)
.ThenBy(t => t.LineItemId)
.Skip(startRowIndex)
.Take(maximumRows);
</code></pre>
<p>However, when the value of Skip is anything but 0, I get this error:</p>
<p><em>This provider supports Skip() only over ordered queries returning entities or projections that contain all identity columns, where the query is a single-table (non-join) query, or is a Distinct, Except, Intersect, or Union (not Concat) operation.</em> </p>
<p>I'd think that between teh DateCompleted and LineItemId that the rows would be unique, but then again this pops up. Does it have to do with this being a view? If so, how can I circumvent this issue?</p>
http://stackoverflow.com/questions/1749820/convert-session-object-to-iorderedqueryablet0Convert Session Object to IOrderedQueryable<T>Jason N. Gaylord2009-11-17T15:53:38Z2009-11-17T16:54:35Z
<p>I need to convert a Session object to an IOrderedQueryable and came up blank. I've thought of creating a wrapper, but its not working properly. Basically, I am pulling a Linq query and would like to store it so that I don't have to pull it each time I visit. There are up to 7-10 parameters per user so it's not something that's great for caching.</p>
http://stackoverflow.com/questions/1749820/convert-session-object-to-iorderedqueryablet/1750225#17502250Answer by Jason N. Gaylord for Convert Session Object to IOrderedQueryable<T>Jason N. Gaylord2009-11-17T16:53:46Z2009-11-17T16:53:46Z<p>I can simply cast my Session object as an IOrderedQueryable like:</p>
<pre><code>(IOrderedQueryable<T>)Session["myObject"];
</code></pre>
http://stackoverflow.com/questions/1669630/ajax-assembly-error-assembly-0-does-not-contain-a-web-resource-with-name-10Ajax Assembly Error - Assembly {0} does not contain a Web resource with name {1}Jason N. Gaylord2009-11-03T19:31:04Z2009-11-04T09:51:06Z
<p>I have an assembly that contains an embedded resource. However, when this assembly is accessed via the web, I get the following error: Assembly 'MyAssembly, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not contain a Web resource with name 'MyAssembly.MyScript.js'.</p>
<p>Ironically enough, if I write an app that uses reflection to look at the resources, the name of the script file is 'MyAssembly.MyScript.js'.</p>
<p>Here's the stack:</p>
<pre><code>[InvalidOperationException: Assembly 'MyAssembly, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not contain a Web resource with name 'MyAssembly.MyScript.js'.]
System.Web.UI.WebResourceUtil.VerifyAssemblyContainsReleaseWebResource(Assembly assembly, String releaseResourceName) +614706
System.Web.UI.ScriptReference.ShouldUseDebugScript(String releaseName, Assembly assembly, Boolean isDebuggingEnabled) +85
System.Web.UI.ScriptReference.GetResourceName(String releaseName, Assembly assembly, Boolean isDebuggingEnabled) +16
System.Web.UI.ScriptReference.GetUrlFromName(ScriptManager scriptManager, IControl scriptManagerControl, Boolean zip) +80
System.Web.UI.ScriptManager.RegisterUniqueScripts(List`1 uniqueScripts) +169
System.Web.UI.ScriptManager.RegisterScripts() +407
System.Web.UI.ScriptManager.OnPagePreRenderComplete(Object sender, EventArgs e) +200
System.Web.UI.Page.OnPreRenderComplete(EventArgs e) +11039454
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3672
</code></pre>
<p>Thanks in advance for any assistance!</p>
http://stackoverflow.com/questions/1669856/authentication-token-not-working-properly-in-asp-net-web-application0Authentication Token Not Working Properly in ASP.NET Web ApplicationJason N. Gaylord2009-11-03T20:11:56Z2009-11-03T21:57:04Z
<p>I've converted a web site to a web application and am now experiencing a strange behavior with the application. Essentially, there are 2 webs. One web site is the main, front-facing site written in ASP.NET 1.1 but with the Membership piece added from 2.0. The other is a former web site now grown up to a web application. </p>
<p>It seems as though when I login to the web site (project 1), I get properly redirected to the web app (project 2) properly. However, any link I click on sends me back to login on the web site (project 1). The machine keys are the same and all of the forms authentication properties are the same. </p>
<p>I've stopped IIS several times and deleted the files in the temporary folder and still no go. Very frustrating.</p>
<p>Here is an example of my forms element for my web app:</p>
<pre><code><forms domain="beta.domain.com" name=".ASPXAUTH" loginUrl="http://beta.domain.com/" protection="All" timeout="600" path="/" requireSSL="true" slidingExpiration="true" defaultUrl="https://beta.domain.com/app/" enableCrossAppRedirects="true"/>
</code></pre>
<p>Here is an example of my forms element for the web site:</p>
<pre><code><forms name=".ASPXAUTH" enableCrossAppRedirects="true" timeout="600" defaultUrl="/QueryStringAuthenticate.aspx" loginUrl="/" protection="All" slidingExpiration="true" cookieless="UseDeviceProfile" domain="beta.domain.com" />
</code></pre>
<p>Then on both I have the same machine key value specified. The QueryStringAuthenticate.aspx page in the web site hasn't changed. It still does the same thing it always did (obtain the cookie name [.ASPXAUTH] and cookie value [authentication token]).</p>
http://stackoverflow.com/questions/1669856/authentication-token-not-working-properly-in-asp-net-web-application/1670402#16704020Answer by Jason N. Gaylord for Authentication Token Not Working Properly in ASP.NET Web ApplicationJason N. Gaylord2009-11-03T21:57:04Z2009-11-03T21:57:04Z<p>I finally got it. It actually had nothing to do with the authentication itself, but rather the browser settings. Apparently, someone had modified our image file for dev machines to add the site in the trusted sites for HTTPS, but did not add it without the HTTPS. So, IE was dropping the connection somewhere. Either adding both with and without the HTTPS or removing those entries resolved the issue.</p>
http://stackoverflow.com/questions/1650651/using-a-ref-to-pass-gridview-columns-to-a-method0Using a ref to pass GridView columns to a methodJason N. Gaylord2009-10-30T15:53:49Z2009-10-30T16:06:41Z
<p>So I'm working on this VB to C# web application migration and came across an issue that I'm hoping there is an easy work around for. There's a webform that uses the GridView control. In code, it passes the columns collection into a method that adds columns dynamically based on the user, permissions, and environment. So, the columns were passed into the function in VB using ByRef like so:</p>
<pre><code>Public Sub PopulateColumns(ByRef ColumnCollection As DataControlFieldCollection)
'Do something
End Sub
</code></pre>
<p>Now in C#, I've used the ref keyword, but the columns collection doesn't have a setter. What's my quickest workaround for this? I'm going to be converting this over to a jQuery grid soon so I'm not concerned with best practices, but rather just getting it to work.</p>
<p>Here it is in C#:</p>
<pre><code>public void PopulateColumns(ref DataControlFieldCollection columnCollection)
{
// Something here
}
</code></pre>
<p>which is called like this...</p>
<pre><code>.PopulateColumns(ref EmployeeGridView.Columns)
</code></pre>
http://stackoverflow.com/questions/722482/looking-for-a-code-sample-or-template-for-an-ef-repository0Looking for a code sample or "template" for an EF RepositoryJason N. Gaylord2009-04-06T17:46:05Z2009-10-04T03:40:17Z
<p>I'm looking for a good Entity Framework repository code sample or template.</p>
http://stackoverflow.com/questions/1424837/best-asp-net-background-service-implementation1Best ASP.NET Background Service ImplementationJason N. Gaylord2009-09-15T02:27:19Z2009-09-30T11:40:25Z
<p>What's the best implementation for more than one background service in an ASP.NET application?</p>
<ol>
<li><p>Timer Callback</p>
<pre><code>Timer timer = new Timer(new TimerCallback(MyWorkCallback), HttpContext, 5000, 5000);
</code></pre></li>
<li><p>Thread or ThreadPool</p>
<pre><code>Thread thread = new Thread(Work);
thread.IsBackground = true;
thread.Start();
</code></pre></li>
<li><p>BackgroundWorker</p>
<pre><code>BackgroundWorker worker = new BackgroundWorker();
worker.DoWork += new DoWorkEventHandler(DoMyWork);
worker.RunWorkerCompleted += new RunWorkerCompletedEventHandler(DoMyWork_Completed);
worker.RunWorkerAsync();
</code></pre></li>
<li><p>Caching like <a href="http://www.codeproject.com/KB/aspnet/ASPNETService.aspx" rel="nofollow">http://www.codeproject.com/KB/aspnet/ASPNETService.aspx</a> (located in Jeff Atwood's <a href="http://blog.stackoverflow.com/2008/07/easy-background-tasks-in-aspnet/" rel="nofollow">post here</a>)</p></li>
</ol>
<p>I need to run multiple background "services" at a given time. One service may run every 5 minutes where another may be once a day. It will never be more than 10 services running at a time.</p>
http://stackoverflow.com/questions/1495952/background-and-css-floats2Background and CSS FloatsJason N. Gaylord2009-09-30T03:18:59Z2009-09-30T03:25:32Z
<p>So I am using the 960 grid system and found a few things that they don't support. I've considered switching to Blueprint, but I've got to come back to the design a bit later in the process. Anyway, I've simplified my code to show what I'm experiencing:</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Test CSS</title>
<style type="text/css">
.frame { width: 960px; margin-left: auto; margin-right: auto; }
.column { display: inline; float: left; position: relative; margin: 10px 10px 10px 10px; width: 300px; background-color: silver; }
#bkg { background-color: blue; }
</style>
</head>
<body>
<div class="frame" id="bkg">
<div class="column">Column A</div>
<div class="column">Column B<div><br/><br/><br/><br/></div></div>
<div class="column">Column C</div>
</div>
</body>
</html>
</code></pre>
<p>I'm trying to see the background expand to cover all 3 columns. Is there anything I can do to expand the background so it covers all 3 columns?</p>
http://stackoverflow.com/questions/1467999/testing-against-web-configuration-from-class-library1Testing against Web Configuration from Class LibraryJason N. Gaylord2009-09-23T19:06:12Z2009-09-24T01:51:26Z
<p>I'm storing my application settings in my web.config file and accessing them using ConfigurationManager.GetSection or ConfigurationManager.AppSettings. I've created a test to ensure that the settings I'm getting from my class are the correct settings in the web.config file, however, it's returning null values. How can I tell my unit test that the class library should be using the web.config file for it's configuration rather than the app.config file that accompanies the class library? In this case since I'm generating a quick test, I'm using the built-in VS Unit test library.</p>
http://stackoverflow.com/questions/1467999/testing-against-web-configuration-from-class-library/1469433#14694330Answer by Jason N. Gaylord for Testing against Web Configuration from Class LibraryJason N. Gaylord2009-09-24T01:51:26Z2009-09-24T01:51:26Z<p>I was able to add the app.config file to the Tests application to get my issue resolved.</p>
http://stackoverflow.com/questions/1467570/using-fiddler-for-measuring-performance/1468057#1468057-1Answer by Jason N. Gaylord for Using Fiddler for measuring performanceJason N. Gaylord2009-09-23T19:16:13Z2009-09-23T19:16:13Z<p>As mentioned already, Fiddler tracks the bytes traveled across the network and is really not meant for performance tests. If you're looking to do a performance test, the recommendation is to generate several unit tests that cover the functions of your web application and then use the performance tests built into Visual Studio (or utilize another testing framework) to stress test your application. That's the more accurate way to determine load. </p>
<p>If you are looking for load times for a page, turn tracing on to see from start to finish the load times. It will show each event in the stack.</p>
<p>HTH</p>
http://stackoverflow.com/questions/1467669/compile-an-asp-net-in-a-winforms-application/1468040#14680401Answer by Jason N. Gaylord for Compile an ASP.Net in a WinForms applicationJason N. Gaylord2009-09-23T19:12:47Z2009-09-23T19:12:47Z<p>Check out Cassini. It's a web server that has been build awhile back by the ASP.NET team to allow Visual Studio to debug web applications without needing IIS. It's also a standalone web server. The source can be found on Dmitry's blog at <a href="http://blogs.msdn.com/dmitryr/archive/2006/03/09/548131.aspx" rel="nofollow">http://blogs.msdn.com/dmitryr/archive/2006/03/09/548131.aspx</a></p>
http://stackoverflow.com/questions/1459627/making-text-box-not-editable/1460147#14601470Answer by Jason N. Gaylord for Making Text box not editableJason N. Gaylord2009-09-22T13:35:42Z2009-09-22T13:35:42Z<p>I'd prefer to write the text directly to the cell using a literal or String() output rather than using a control. It's a bit cleaner and will help minimize the amount of ViewState being written. Either that, or turn off ViewState for those controls being added.</p>
http://stackoverflow.com/questions/1460070/dlls-in-a-asp-net-application-and-sourcesafe-sharing-between-computers/1460124#14601242Answer by Jason N. Gaylord for DLL's in a ASP.NET Application and SourceSafe/Sharing between computersJason N. Gaylord2009-09-22T13:32:21Z2009-09-22T13:32:21Z<p>You can copy them to the web applications /bin folder. When you upload to source control (SourceSafe/SVN/etc), they will be available to be shared. This will override what is found in the GAC.</p>
<p>Additionally, you can still develop your projects with the DLLs registered in the GAC. Each developer can still register the DLLs with the GAC independently.</p>
http://stackoverflow.com/questions/1403155/linq-to-lambda-expressions1LINQ to Lambda ExpressionsJason N. Gaylord2009-09-10T02:57:01Z2009-09-10T04:26:56Z
<p>Is there an application or utility that will convert LINQ to Lambda Expressions? (or an add-on to LINQPad)</p>
http://stackoverflow.com/questions/1396256/extending-ienumerable-to-return-bindinglist0Extending IEnumerable to Return BindingListJason N. Gaylord2009-09-08T20:47:10Z2009-09-09T21:17:20Z
<p>In a previous question on <a href="http://stackoverflow.com/questions/1394816/binding-entities-to-a-windows-datagridview">Stack Overflow</a>, I had run into an issue with returning an EF query to the DataGridView. Of course I'd run into an issue. However, I added an extension method that still has me baffled since it isn't working. It seems like it should, but for some reason it's not.</p>
<pre><code>public static class BindingListEntityExtension
{
public static BindingList<T> ToBindingList<T>(this IEnumerable<T> entities)
{
BindingList<T> rtn = new BindingList<T>();
foreach (T obj in entities)
{
rtn.Add(obj);
}
return rtn;
}
}
</code></pre>
<p>Any ideas what's going on? My implementation is like so:</p>
<pre><code>MyEntities context = new MyEntities();
tempDataGridView.DataSource = context.Employees.ToBindingList();
</code></pre>
http://stackoverflow.com/questions/1396256/extending-ienumerable-to-return-bindinglist/1402154#14021540Answer by Jason N. Gaylord for Extending IEnumerable to Return BindingListJason N. Gaylord2009-09-09T21:17:20Z2009-09-09T21:17:20Z<p>Got it. As Ecyrb had suggested in a previous post, the BindingList does not sort. I did use the <a href="http://www.timvw.be/presenting-the-sortablebindinglistt/" rel="nofollow">suggested site/</a> to get my list to sort. Thanks guys! My extension does work now.</p>
http://stackoverflow.com/questions/1394816/binding-entities-to-a-windows-datagridview0Binding Entities to a Windows DataGridViewJason N. Gaylord2009-09-08T16:01:12Z2009-09-08T21:17:30Z
<p>I have an EF source that I'm binding to a DataGridView. The binding is happening programatically. However, the sorting is not working.</p>
<p>So I decided to mess with some code and create an Extension Method, but it seems like its still not working.</p>
<pre><code>public static class BindingListEntityExtension
{
public static BindingList<T> ToBindingList<T>(this IEnumerable<T> entities)
{
BindingList<T> rtn = new BindingList<T>();
foreach (T obj in entities)
{
rtn.Add(obj);
}
return rtn;
}
}
</code></pre>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1396238/help-with-asp-net-routing/1396262#13962622Answer by Jason N. Gaylord for Help with asp.net routingJason N. Gaylord2009-09-08T20:49:31Z2009-09-08T20:49:31Z<p>It should be:</p>
<pre><code><%= Html.ActionLink("Users", "Index", new {Id=3})
</code></pre>
http://stackoverflow.com/questions/1347687/repository-pattern-best-practice7Repository Pattern Best PracticeJason N. Gaylord2009-08-28T15:20:37Z2009-08-28T20:27:08Z
<p>So I'm implementing the repository pattern in an application and came across two "issues" in my understanding of the pattern:</p>
<ol>
<li><p>Querying - I've read responses that IQueryable should not be used when using repositories. However, it's obvious that you'd want to so that you are not returning a complete List of objects each time you call a method. Should it be implemented? If I have an IEnumerable method called List, what's the general "best practice" for an IQueryable? What parameters should/shouldn't it have?</p></li>
<li><p>Scalar values - What's the best way (using the Repository pattern) to return a single, scalar value without having to return the entire record? From a performance standpoint, wouldn't it be more efficient to return just a single scalar value over an entire row? </p></li>
</ol>
http://stackoverflow.com/questions/1346826/how-can-i-change-the-look-of-an-asp-net-page-without-recompiling-code/1347745#13477450Answer by Jason N. Gaylord for How can I change the look of an ASP.NET page without recompiling code?Jason N. Gaylord2009-08-28T15:27:34Z2009-08-28T15:27:34Z<p>If you are familiar with MVC, I'd look into ASP.NET MVC. However, you can also use plenty of built in features that have been in place since ASP.NET 2.0 such as MasterPages to control templates and Themes to control and switch between page layouts, color schemes, etc. Both can use CSS which would ultimately change the way your code looks. Even standard ASP.NET web form controls contain a CssClass property that can be set and used for formatting the web form controls.</p>
http://stackoverflow.com/questions/1344898/implementing-nullable-types-in-generic-interface1Implementing Nullable Types in Generic InterfaceJason N. Gaylord2009-08-28T03:33:43Z2009-08-28T04:56:19Z
<p>So in a previous question I asked about implementing a generic interface with a public class and bingo, it works. However, one of the types I'm looking to pass in is one of the built in nullable types such as: int, Guid, String, etc.</p>
<p>Here's my Interface:</p>
<pre><code>public interface IOurTemplate<T, U>
where T : class
where U : class
{
IEnumerable<T> List();
T Get(U id);
}
</code></pre>
<p>So when I implement this like so:</p>
<pre><code>public class TestInterface : IOurTemplate<MyCustomClass, Int32>
{
public IEnumerable<MyCustomClass> List()
{
throw new NotImplementedException();
}
public MyCustomClass Get(Int32 testID)
{
throw new NotImplementedException();
}
}
</code></pre>
<p>I receive the error message: <em>The type 'int' must be a reference type in order to use it as parameter 'U' in the generic type or method 'TestApp.IOurTemplate'</em></p>
<p>I've tried to infer the type Int32?, but same error. Any ideas?</p>
http://stackoverflow.com/questions/1344628/passing-session-from-one-application-to-another/1344956#13449560Answer by Jason N. Gaylord for Passing session from one application to anotherJason N. Gaylord2009-08-28T04:00:57Z2009-08-28T04:00:57Z<p>What language are you using? If you are using ASP.NET on IIS, which I'd assume by your tags, you can do it using the machineKey attribute of <system.web> in the web.config file. It would look similar to this:</p>
<pre><code><system.web>
<machineKey validationKey="(here)" decryptionKey="(here)" validation="SHA1" />
</system.web>
</code></pre>
<p>Then, you can use the enableCrossAppRedirects="true" attribute on <forms> authentication type if you'd like the authentication keys to be passed between apps.</p>
<p>Also, if you'd like to generate a machineKey, you can use Scott Forsyth's tool at <a href="http://www.orcsweb.com/articles/aspnetmachinekey.aspx" rel="nofollow">http://www.orcsweb.com/articles/aspnetmachinekey.aspx</a></p>
<p>Finally, as the first answer was posted, you can implement the ASP.NET state server for better control of the application's state. The ASP.NET team will be releasing Velocity soon which handles distributed caching. There are also third party tools for both.</p>
http://stackoverflow.com/questions/1344694/implement-an-interface-with-generic-methods0Implement an Interface with Generic MethodsJason N. Gaylord2009-08-28T02:15:19Z2009-08-28T02:35:01Z
<p>I'm drawing a blank on this one and can't seem to find any previous example that I wrote. I'm trying to implement a generic interface with a class. When I implement the interface I think something isn't working right because Visual Studio continually produces errors saying that I'm not implmenting all of the methods in the Generic Interface.</p>
<p>Here's a stub of what I'm working with:</p>
<pre><code>public interface IOurTemplate<T, U>
{
IEnumerable<T> List<T>() where T : class;
T Get<T, U>(U id)
where T : class
where U : class;
}
</code></pre>
<p>So what should my class look like?</p>
http://stackoverflow.com/questions/1759325/gridview-not-rebinding-properly-after-postback/1770858#1770858Comment by Jason N. Gaylord on GridView not Rebinding Properly After PostbackJason N. Gaylord2009-11-20T16:44:50Z2009-11-20T16:44:50ZThanks, but I think I got it. Totally unrelated issue.http://stackoverflow.com/questions/1759325/gridview-not-rebinding-properly-after-postback/1770858#1770858Comment by Jason N. Gaylord on GridView not Rebinding Properly After PostbackJason N. Gaylord2009-11-20T15:26:05Z2009-11-20T15:26:05ZNope. Still not working. Thanks though!http://stackoverflow.com/questions/1759325/gridview-not-rebinding-properly-after-postbackComment by Jason N. Gaylord on GridView not Rebinding Properly After PostbackJason N. Gaylord2009-11-20T14:30:39Z2009-11-20T14:30:39ZModified the above again.http://stackoverflow.com/questions/1759325/gridview-not-rebinding-properly-after-postback/1766631#1766631Comment by Jason N. Gaylord on GridView not Rebinding Properly After PostbackJason N. Gaylord2009-11-20T14:28:32Z2009-11-20T14:28:32ZWow. Thanks Jeff. That helps, but it doesn't solve my issue.http://stackoverflow.com/questions/1759325/gridview-not-rebinding-properly-after-postback/1759473#1759473Comment by Jason N. Gaylord on GridView not Rebinding Properly After PostbackJason N. Gaylord2009-11-19T18:52:04Z2009-11-19T18:52:04ZUpdated code to show you what I'm doing.http://stackoverflow.com/questions/1759325/gridview-not-rebinding-properly-after-postback/1759473#1759473Comment by Jason N. Gaylord on GridView not Rebinding Properly After PostbackJason N. Gaylord2009-11-19T18:47:46Z2009-11-19T18:47:46ZYeah so even in the Page_Load event it doesn't work.http://stackoverflow.com/questions/1759325/gridview-not-rebinding-properly-after-postback/1759473#1759473Comment by Jason N. Gaylord on GridView not Rebinding Properly After PostbackJason N. Gaylord2009-11-19T14:02:50Z2009-11-19T14:02:50ZYeah. Look below the sample code above: "I've tried adding a button and adding the TestGridView.DataBind(); method to that. I've tried adding it to the Page_PreRender event. No matter what I try, it's not working."http://stackoverflow.com/questions/1751232/linq-skip-orderby-and-sql-server-2000/1751255#1751255Comment by Jason N. Gaylord on LINQ, Skip, OrderBy, and SQL Server 2000Jason N. Gaylord2009-11-18T20:00:32Z2009-11-18T20:00:32ZThis did work. Nice "hack" to force Distinct() on the LINQ query.http://stackoverflow.com/questions/1757446/using-t-sql-avg-or-taking-average-after-results-returned-using-linq/1757557#1757557Comment by Jason N. Gaylord on Using T-SQL AVG or taking Average after results returned using LINQJason N. Gaylord2009-11-18T18:14:21Z2009-11-18T18:14:21ZRegarding the view comment, I've added some additional stuff to the posted question.http://stackoverflow.com/questions/1757446/using-t-sql-avg-or-taking-average-after-results-returned-using-linq/1757517#1757517Comment by Jason N. Gaylord on Using T-SQL AVG or taking Average after results returned using LINQJason N. Gaylord2009-11-18T18:10:06Z2009-11-18T18:10:06ZRemember, this is a view.http://stackoverflow.com/questions/1757446/using-t-sql-avg-or-taking-average-after-results-returned-using-linq/1757517#1757517Comment by Jason N. Gaylord on Using T-SQL AVG or taking Average after results returned using LINQJason N. Gaylord2009-11-18T18:09:16Z2009-11-18T18:09:16ZDown to 2 seconds. Thanks! Forgot about trying that since I was basically running a query on the entire dataset 3 times for each product.
Regarding the indexing, what do you mean setup the correct indexes?http://stackoverflow.com/questions/1757446/using-t-sql-avg-or-taking-average-after-results-returned-using-linq/1757557#1757557Comment by Jason N. Gaylord on Using T-SQL AVG or taking Average after results returned using LINQJason N. Gaylord2009-11-18T17:54:30Z2009-11-18T17:54:30ZIt would vary between 0 and 15000 rows I'd imagine.http://stackoverflow.com/questions/1751232/linq-skip-orderby-and-sql-server-2000/1751255#1751255Comment by Jason N. Gaylord on LINQ, Skip, OrderBy, and SQL Server 2000Jason N. Gaylord2009-11-17T22:11:50Z2009-11-17T22:11:50ZI think this worked. Not sure though. Good suggestion!http://stackoverflow.com/questions/1751232/linq-skip-orderby-and-sql-server-2000/1751298#1751298Comment by Jason N. Gaylord on LINQ, Skip, OrderBy, and SQL Server 2000Jason N. Gaylord2009-11-17T21:00:54Z2009-11-17T21:00:54ZI wish the error would be a bit more descriptive as to which issue it actually was. I'll have to dive in a bit more.http://stackoverflow.com/questions/1749820/convert-session-object-to-iorderedqueryabletComment by Jason N. Gaylord on Convert Session Object to IOrderedQueryable<T>Jason N. Gaylord2009-11-17T16:52:52Z2009-11-17T16:52:52ZGot it. Nevermind.