User qui - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T20:16:55Zhttp://stackoverflow.com/feeds/user/3193http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/121722/getting-value-from-a-cell-from-a-gridview-on-rowdatabound-event1Getting value from a cell from a gridview on RowDataBound eventqui2008-09-23T15:26:14Z2009-11-29T04:50:06Z
<pre><code>string percentage = e.Row.Cells[7].Text;
</code></pre>
<p>I am trying to do some dynamic stuff with my GridView, so I have wired up some code to the RowDataBound event. I am trying to get the value from a particular cell, which is a TemplateField. But the code above always seems to be returning an empty string. </p>
<p>Any ideas?</p>
<p>To clarify, here is a bit the offending cell:</p>
<pre><code> <asp:TemplateField HeaderText="# Percentage click throughs">
<ItemTemplate>
<%# AddPercentClickThroughs((int)Eval("EmailSummary.pLinksClicked"), (int)Eval("NumberOfSends")) %>
</ItemTemplate>
</asp:TemplateField>
</code></pre>
<p>On a related note, does anyone know if there is a better way of selecting the cell in the row. It sucks putting in cell[1]. Couldn't I do cell["mycellname"], so if I decide to change the order of my cells, bugs wont appear.</p>
http://stackoverflow.com/questions/1708694/sql-group-with-order-by1SQL Group with Order by qui2009-11-10T15:14:35Z2009-11-10T15:24:26Z
<p>This feels like it should have a basic solution but I dont seem to be getting it. </p>
<p>Take this query</p>
<pre><code> SELECT Category FROM Article
GROUP BY Category
</code></pre>
<p>I want to effectively do this:</p>
<pre><code> SELECT Category, DatePublished FROM Article
GROUP BY Category
ORDER BY DatePublished DESC
</code></pre>
<p>I dont really want to select DatePublished, but it seemed to make sense to order by it. That doesnt work though. </p>
<p>Basically I want to order categories by the most recent DatePublished article. </p>
http://stackoverflow.com/questions/1668451/move-item-to-top-of-list-linq3Move item to top of list (linq)qui2009-11-03T16:25:55Z2009-11-03T16:55:09Z
<p>I can think of a million ways to do this, but none seem very elegant. I wonder if anyone knows a neat way to move an item of say id=10 as the first item in a list using LINQ (or whatever really)</p>
<pre>
Item A - id =5
Item B - id = 10
Item C - id =12
Item D - id =1</pre>
<p>In this case how can I elegantly move Item C to the top of my List?</p>
<p>This is the best I have right now...</p>
<blockquote>
<pre><code> var allCountries = repository.GetCountries();
var topitem = allCountries.Single(x => x.id == 592);
var finalList = new List<Country>();
finalList.Add(topitem);
finalList = finalList.Concat(allCountries.Where(x=> x.id != 592)).ToList();
</code></pre>
</blockquote>
http://stackoverflow.com/questions/1612413/retrieve-value-from-asptextbox-with-jquery/1612641#16126412Answer by qui for Retrieve value from asp:textbox with JQueryqui2009-10-23T10:43:23Z2009-10-23T10:43:23Z<p>As far as I can tell doing </p>
<pre><code>var recipient = $(".recipient")
</code></pre>
<p>Will select all dom elements with a CLASS of recipient. Your input box has a class of "inputBox". </p>
<p>You need to select by its ID using the #</p>
<p>So: </p>
<pre><code>var recipient = $("#recipient")
</code></pre>
<p>But you are using ASP.NET controls, which give it a unique ID generated on the server so it's unique. (in your case it's ctl00_contentPlaceHolderRightColumn_recipient)</p>
<p>To select you will need to do </p>
<pre><code>var recipient = $("#<%=recipient.ClientID%>")
</code></pre>
<p>-edited out some syntax errors</p>
http://stackoverflow.com/questions/1559582/css-and-images-on-master-page/1559601#15596011Answer by qui for CSS and images on Master Pagequi2009-10-13T11:18:30Z2009-10-13T11:18:30Z<p>Fairly sure this will work</p>
<pre><code><link href="/css/style.css" rel="stylesheet" type="text/css />
</code></pre>
<p>/ takes you to the root of your site</p>
http://stackoverflow.com/questions/1542611/simple-linq-question-how-to-select-more-than-one-column/1542630#15426303Answer by qui for Simple Linq question: How to select more than one column?qui2009-10-09T08:45:30Z2009-10-09T09:13:18Z<pre><code> List<Benutzer> users = (from a in dc.Benutzer
select new Benutzer{
myCol= a.myCol,
myCol2 = a.myCol2
}).ToList();
</code></pre>
<p>I think that's what you want if you want to make the same kind of list. But that assumes that the properties you are setting have public setters.</p>
http://stackoverflow.com/questions/1504073/asp-net-mvc-complex-example/1505023#15050230Answer by qui for asp.net MVC - complex example?qui2009-10-01T16:29:28Z2009-10-01T16:29:28Z<p>To automatically pass data to all views, you can make your own controller class and use that: </p>
<p>Example</p>
<pre><code> public class MyController : Controller
{
private User _CurrentUser;
public User CurrentUser
{
get
{
if (_CurrentUser == null)
_CurrentUser = (User)Session["CurrentUser"];
return _CurrentUser;
}
set
{
_CurrentUser = value;
Session["CurrentUser"] = _CurrentUser;
}
}
/// <summary>
/// Use this override to pass data to all views automatically
/// </summary>
/// <param name="context"></param>
protected override void OnActionExecuted(ActionExecutedContext context)
{
base.OnActionExecuted(context);
if (context.Result is ViewResult)
{
ViewData["CurrentUser"] = CurrentUser;
}
}
}
</code></pre>
http://stackoverflow.com/questions/1491296/assign-a-javscript-variable-from-c/1491310#14913100Answer by qui for assign a javscript variable from c#qui2009-09-29T08:40:19Z2009-09-29T08:40:19Z<p>It depends what technology you are using. </p>
<p>If you are using ASP MVC, pass the data into the view (whatever way suits you) and then use the <%= syntax</p>
<p>i.e</p>
<pre><code>flashvars.myval = <%=ViewData["MyVal"]%>
</code></pre>
http://stackoverflow.com/questions/1487969/constructor-not-being-called/1487995#14879951Answer by qui for Constructor not being calledqui2009-09-28T16:25:28Z2009-09-28T16:25:28Z<p>Without looking into it too much..</p>
<pre><code> private Logger()
{
filename = ConfigurationManager.AppSettings["MyLogPath"];
throw new Exception("filename = "+filename);
}
</code></pre>
<p>Does the exception get thrown?</p>
http://stackoverflow.com/questions/1476699/union-on-two-big-linq-queries-not-supported-how-do-i-get-around-it-if-at-all-po1Union on two big LINQ queries not supported. How do I get around it (if at all possible)qui2009-09-25T11:08:34Z2009-09-26T15:21:28Z
<p>This is quite a monster query I am writing. </p>
<p>A very quick description of the database: You have an image table, an imagetag table, which joins it to a tag table. Images can have 0 or many tags. </p>
<p>I have a query which does a full text search on the Image's title property and this works fine. </p>
<p>However, I want it so when you do a full text search, it also looks at the image's tag names to see if anything matches. For instance, you could have an image with a title of "Awesome Cakes", which has a tag of cooking. When a user does a full text search of cooking, it should find that image, because it has a corresponding tag. </p>
<p>Right?</p>
<p>So as I mentioned I have my fulltext method which works and returns a queryable list of images. </p>
<p>I have also made a method which finds images with matching tags to the full text query</p>
<pre><code>IQueryable<Image> results = imageService.FullTextSearch(MakeSearchTerm(freeText));
IQueryable<Image> tagResults = imageService.FullTextTagSearch(freeText, tagService);
</code></pre>
<p>When I debug this and view the enumerations, they both have results. </p>
<p>What I want to do is union them into one result set. </p>
<p>The reason I want to do this, is later down the code, other filters are applied to the results before the actual query is executed, such as filtering by author and only taking the results needed for the particular page. </p>
<p>Unfortunately, when I try and union:</p>
<pre><code>results = results.Concat(tagResults).Distinct();
</code></pre>
<p>Types in Union or Concat cannot be constructed with hierarchy.</p>
<p>I understand that this might not be possible :p But I'm just seeing if there are any good ideas and solutions, cheers.</p>
http://stackoverflow.com/questions/1298972/manually-select-related-table-data-select-n-1-problem-linq-to-sql3Manually select related table data (SELECT N + 1 problem) LINQ to SQLqui2009-08-19T10:22:35Z2009-09-24T22:57:10Z
<p>Database example:</p>
<p><strong>Image - ImageTag - Tag</strong></p>
<p>Images can have multiple tags. The relationships are set up fine and stuff but I am running into performance issues.</p>
<p>I have many different queries which select Images according to different criteria. They work fine, however the data for the Tags are not selected with these queries.</p>
<p>This means if I iterate through a list of 10 images and try to access thier tags objects (via ImageTag), then a new query is executed on my database for every image.</p>
<pre><code><%foreach (LINQRepositories.Image i in Model)
{ %>
<li><%=i.title%>
<ul>
<%foreach(ImageTag t in i.ImageTags){ %>
<li><%=t.Tag.name%></li>
<%} %>
</ul>
</li>
<%} %>
</code></pre>
<p>This is obviously not ideal. Is there a way to force LINQ to SQL to query for certain data?</p>
<p>Here is an example of one of my queries</p>
<pre><code>public static IQueryable<Image> WithTags(this IQueryable<Image> qry, IEnumerable<Tag> tags)
{
return
from i in qry
from iTags in i.ImageTags
where tags.Contains(iTags.Tag)
select i;
}
</code></pre>
<p><hr /></p>
<h2>Edit</h2>
<p>After trying dataload options, this is an example query being generated</p>
<blockquote>
<p>{SELECT [t0].[id], [t0].[title],
[t0].[legend], [t0].[dateAdded],
[t0].[deleted], [t0].[averageRating],
[t0].[numberOfVotes],
[t0].[imageOfTheWeek],
[t0].[copyright],
[t0].[copyrightText],
[t0].[areaOfInterest], [t0].[typeId],
[t0].[authorId],
[t0].[editorialStatusId],
[t0].[comments] FROM [dbo].[Image] AS
[t0] CROSS JOIN ([dbo].[ImageTag] AS
[t1]
INNER JOIN [dbo].[Tag] AS [t2] ON [t2].[id] = [t1].[TagId]) WHERE
([t2].[id] = @p0) AND (NOT
([t0].[deleted] = 1)) AND (NOT
([t0].[deleted] = 1)) AND
([t1].[ImageId] = [t0].[id]) }</p>
</blockquote>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/67614#6761459Answer by qui for Hidden Features of JavaScript?qui2008-09-15T22:27:58Z2009-09-22T20:30:37Z<p>Maybe a little obvious to some...</p>
<p>Install <a href="http://en.wikipedia.org/wiki/Firebug%5F%28Firefox%5Fextension%29" rel="nofollow">Firebug</a> and use console.log("hello"). So much better than using random alert();'s which I remember doing a lot a few years ago.</p>
http://stackoverflow.com/questions/1453461/programmatically-set-an-ext-textfield-to-be-valid0Programmatically set an Ext.TextField to be validqui2009-09-21T08:44:51Z2009-09-21T09:32:43Z
<p>I have made my own custon vtype which performs an ajax request to check if a username is available in the database:</p>
<pre><code>Ext.apply(Ext.form.VTypes, {
username: function(val, field) {
var conn = new Ext.data.Connection();
conn.request({
url: '/account/CheckUsernameAvailability',
params: { "username": val },
success: function(data) {
console.log("field = ", field);
console.log(data.responseText);
},
failure: function() {
Ext.Msg.alert('Status', 'Unable to add vote');
}
});
},
usernameText: 'Username is already taken'
});
</code></pre>
<p>The problem is that the request is obviously asynchronous so I cant just return true if the data.responseText is OK. Within this function I need to be able to set "field" to be valid. </p>
<p>But I cant seem to find anything in the Ext API that shows how to do this? (i guess i must be missing something)</p>
http://stackoverflow.com/questions/1437893/linq-get-list-of-letters-which-have-matching-records0LINQ: Get list of letters which have matching recordsqui2009-09-17T10:15:58Z2009-09-17T10:22:06Z
<p>Ok, this is an interesting problem I think</p>
<p>I have a list of items in a db, which have authors. (1 to 1 relationship, "authorId" is the foreign key).</p>
<p>I need to get a list of letters in the alphabet which have a user to match it (by Surname)</p>
<p>For instance, lets pretend there are only 3 items in the db. They were contributed by Mr Car, Mrs Jam and Dr Toffee. </p>
<p>The method would return an array of letters (C, J and T). Actually what would be more useful is a list of the whole alphabet and the C J and T items would have some kind of "active" boolean. </p>
<p>The reason for this is I will eventually have a web page of contributors which has a list of the letters in the alphabet, the user will be able to press on a letter and get a list of contributors. But I need to be able to only enable letters which have contributors. Just pulling from the list of users isnt good enough as some users wont have contributed anything.</p>
<p>I have a method which gets all contributors to start with:</p>
<pre><code> return from u in users.All()
where items.All().Count(i => i.authorId == u.id) > 0
select u;
</code></pre>
http://stackoverflow.com/questions/1431959/asp-net-mvc-posted-entity-not-mapping-to-linq-model1ASP.NET MVC posted entity not mapping to LINQ modelqui2009-09-16T09:32:16Z2009-09-16T10:42:00Z
<p>I have a page which is strongly typed to my "User" class. When it is loaded, I load it by Id from the database and pass it to the view.</p>
<p>When the edit form is posted, the object gets posted to the controller method fine, with some other parameters. The object has its properties filled from the form, but it's ID (which obviously isnt on the form) doesnt get posted. </p>
<p>Even when I manually set it to an ID in code and try and save my context, nothing happens on the database. </p>
<p>Here is a rough view of the code with stuff taken out for brevity.</p>
<pre><code>public ActionResult MyProfile()
{
ViewData["Countries"] = new SelectList(userService.GetCountries(), "id", "name");
return View(userService.GetById(CurrentUser.id));
}
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult MyProfile(MSD_AIDS_Images_Data.LINQRepositories.User user, string password2)
{
user.id = CurrentUser.id; //user id isn't posted, so need to reassign it
userService.SaveChanges();
}
</code></pre>
<p>I have written code like this a dozen times and it has worked, what is going wrong?</p>
<h2>EDIT</h2>
<p>When I debug the user object, it's PropertyChanged and PropertyChanging properties are set to NULL</p>
http://stackoverflow.com/questions/1431959/asp-net-mvc-posted-entity-not-mapping-to-linq-model/1432217#14322170Answer by qui for ASP.NET MVC posted entity not mapping to LINQ modelqui2009-09-16T10:42:00Z2009-09-16T10:42:00Z<p>I fixed the Model binding issues by using an Update Model overload which allows you to specifiy which properties in the model you wish to update:</p>
<pre><code> string[] includeProperties = {"password", "firstname", "lastname", "email", "affiliation", "countryId"};
UpdateModel(user, includeProperties);
</code></pre>
http://stackoverflow.com/questions/1393583/linq-to-xml-getting-value2LINQ to XML getting valuequi2009-09-08T11:56:08Z2009-09-08T13:39:05Z
<p>This is a newbie question but I cant seem to find to do the following:</p>
<p>XML is this - </p>
<pre><code><sets><set><title>hello1</title><images><image>1667</image></images></set></sets>
foreach (XElement setNode in collectionXML.DescendantNodes())
{
myString = setNode.Descendants("title").First()....
}
</code></pre>
<p>From First(), how do i get the inner value of the title node? (in this case it would be "hello1")</p>
<p>Calling ToString() on the element yields "hello1", which obviously isn't quite what I want</p>
http://stackoverflow.com/questions/1372869/list-find-stackoverflow-error/1372956#13729560Answer by qui for List Find() StackOverflow Errorqui2009-09-03T11:51:36Z2009-09-03T11:51:36Z<p>It's likely your ID property is trying to return itself, or set itself</p>
<p>Something like</p>
<pre><code>private int _ID;
public int ID{
get{return ID;}
set{ID=value;}
}
</code></pre>
<p>Obviously it's probably not something that simple, but along those lines</p>
<p>(many edits ;P)</p>
http://stackoverflow.com/questions/1334908/form-values-not-changing-on-asp-mvc0Form values not changing on ASP MVCqui2009-08-26T14:01:31Z2009-08-27T20:15:21Z
<p>I have an edit form, that when posted, if successful should move on to the next record</p>
<p>Here is a snippet of the code in the controller:</p>
<pre><code> if (issues.Count == 0)
{
Service.Save(item);
Service.SaveChanges();
return Edit(NextId, listingName);
}
else
{
ModelState.AddRuleViolations(issues);
}
return Edit(item.id, listingName);
</code></pre>
<p>The id for the next record is correctly passed to the action, but the autogenerated form still has the values of the old item, rather than the new one. I have debugged it and the item is getting loaded and passed to the view fine. </p>
http://stackoverflow.com/questions/1333709/find-next-record-in-a-set-linq1Find next record in a set: LINQqui2009-08-26T10:20:31Z2009-08-26T10:37:15Z
<p>I have a list of objects which all have an id property</p>
<p>E.g</p>
<p>1, 10, 25, 30, 4</p>
<p>I have a currentId and I need to find the next Id in the list</p>
<p>So for example current Id is set to 25, I need to return the object with an id of 30. The one after that would be 4.</p>
<p>How would I do this elegantly in LINQ?</p>
<p><strong>EDIT</strong></p>
<p>The list is ordered by a "sort" property. So you cannot just order by id, as that would mess up the order.</p>
http://stackoverflow.com/questions/1327986/dynamic-url-management-with-javascript0Dynamic URL management with javascriptqui2009-08-25T12:31:29Z2009-08-25T12:41:28Z
<p>I have a search page which allows users to further filter thier results based on criteria within a certain set. </p>
<p>You start a search by searching for all items within a "tag". The URL created for this would look like</p>
<p>search/index?tag=TagA</p>
<p>On the page there are a list of tags that are also in this result set. </p>
<p>What I want is so in this list of tags the URL's generated are</p>
<pre><code><a href="search/index?tag=TagA,TagB">TagB</a>
</code></pre>
<p>It's not good enough just to append onto the URL as there will be other parameters added such as page numbers and other search criteria (I have not included them for brevity)</p>
<p>I'm aware I could probably hack this on the server side but nothing feels very elegant and I was wondering if there was a neat solution for this. </p>
<p>This is all done in ASP MVC and as such I have a nice simple partial view to list these tags:</p>
<pre><code><%if(Model.Count()>0){ %>
<ul>
<%foreach(Tag t in Model){ %>
<li><%=t.name%></li>
<%} %>
</ul>
<%} %
</code></pre>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1315474/how-to-apply-css-class-to-an-html-element-using-jquery-in-asp-net-mvc/1315494#13154943Answer by qui for How to apply css class to an html element using jquery in ASP .NET MVC?qui2009-08-22T08:30:12Z2009-08-22T08:30:12Z<p>You dont and shouldnt use Jquery for this. The reason being is there is no clear reason from your description to actually use Javascript.</p>
<p>What you need to do on your master page is dynamically set the class of the current pages button to something like:</p>
<pre><code><li class="selected">Home</li>
<li>Users</li>
...
</code></pre>
<p>You can find out the current URL by accessing</p>
<pre><code>Request.Url
</code></pre>
<p>Then simply create a CSS class to show the change</p>
<p>No need for javascript here. I love JQuery too, but too often people try and find excuses for using it, rather than using a simple more accessible solution. Remember not everyone can use Javascript</p>
http://stackoverflow.com/questions/1311115/why-is-my-linq-statement-returning-ienumerable4Why is my LINQ statement returning IEnumerable?qui2009-08-21T10:16:11Z2009-08-21T10:19:18Z
<p>I have two very similar methods:</p>
<pre><code>public IQueryable<User> Find(Func<User, bool> exp)
{
return db.Users.Where(exp);
}
public IQueryable<User> All()
{
return db.Users.Where(x => !x.deleted);
}
</code></pre>
<p>The top one, will not compile, saying it returns IEnumerable rather than IQueryable.</p>
<p>Why is this?</p>
<p>Also, I am aware I can add "AsQueryable()" on the end and it will work. What difference does that make though? Any performance hits? I understand that IQueryable has deferred execution and such, will I still get this benefit?</p>
http://stackoverflow.com/questions/1294170/linq-to-sql-many-to-many-contains0LINQ to SQL many to many, containsqui2009-08-18T14:15:48Z2009-08-19T13:41:48Z
<p>I have the following DB (simplified)</p>
<p><strong>Image - ImageTag - Tag</strong></p>
<p>ImageTag is a joining table to form the many to many relationship. </p>
<p>I want to make a method which returns all images which contain x tags, this is what I have started with:</p>
<pre><code>public static IQueryable<Image> WithTags(this IQueryable<Image> qry, IEnumerable<Tag> tags)
{
return from i in qry //uhhhh
}
</code></pre>
<p>But as you can see, I am a little stumped!</p>
<p>I know how I would do it with normal SQL but I am a little stumped with the LINQ syntax for this, any ideas?</p>
<p>-- </p>
<h2>Edit</h2>
<p>It should match any image having any of the tags</p>
<p>So for example, if in the "qry" variable, there is an image with tags 1,2,3.... if you pass in the tags variable 1 and 2, it will match</p>
<p>Similary, if you passed 1,2,4 - It should still match even though it doesnt have 4</p>
<p>If you passed 3 and 4, it would also match</p>
<p><hr /></p>
<h2>Edit 2</h2>
<p>If it could order the images returned by the number of matches, that would be amazing. So for instance if you passed in 3 tags and an image had all 3 tags, it would be higher up than an image which only matched 1</p>
http://stackoverflow.com/questions/1298645/how-to-set-sql-server-filed-date-to-mm-dd-yyyy/1298657#12986570Answer by qui for how to set sql server filed date to mm/dd/yyyyqui2009-08-19T09:10:34Z2009-08-19T09:10:34Z<p>You shouldnt have to perform ToString() in order to insert to an SQL server db</p>
http://stackoverflow.com/questions/1293375/how-to-force-linq-to-update-last-edit-time-of-a-row/1293406#12934061Answer by qui for How to force Linq to update last edit time of a row? qui2009-08-18T11:58:36Z2009-08-18T11:58:36Z<p>Create a partial class of whatever table it is. In the partial class have the following:</p>
<pre><code>public partial class MyTable{
partial void OnValidate(System.Data.Linq.ChangeAction action)
{
LastEditTime = DateTime.Now;
}
}
</code></pre>
<p>OnValidate is always called before doing a database.submitchanges()</p>
http://stackoverflow.com/questions/1287262/title-appears-right-aligned/1287276#12872764Answer by qui for Title appears right aligned!qui2009-08-17T10:41:24Z2009-08-17T10:41:24Z<pre><code><div id="breadcrumb">
</code></pre>
<p>That div is creating space. I would guess you want to give it a width of 100% to make it fill horizontally so the title below has the full width to work with. </p>
<p>Incidentally, I was able to find out the information easily by using <a href="http://getfirebug.com/" rel="nofollow">firebug</a>, which is an extension for firefox. </p>
http://stackoverflow.com/questions/1254587/float-left-problems-while-using-divs/1254593#12545930Answer by qui for Float: left problems while using DIVs?qui2009-08-10T12:31:08Z2009-08-10T12:37:17Z<p>Read about the <a href="http://www.w3.org/TR/CSS2/box.html" rel="nofollow">box model</a></p>
<p>Typically you will have problems because of padding inside your div altering the width. If a div gets too wide to fit in the space it will sit below the others. </p>
<p>For instance, if you have two divs with widths set to 200px. </p>
<p>If you set the padding to be 5px in one of them, the actual width will be 210px (depending on the browser). </p>
<p>But it could be a number of reasons.</p>
http://stackoverflow.com/questions/1254581/get-all-items-in-a-selectlist-within-asp-net-mvc-controller/1254622#12546220Answer by qui for Get ALL items in a SelectList within ASP.NET MVC controllerqui2009-08-10T12:35:49Z2009-08-10T12:35:49Z<p>This is a nice jquery plugin you could use:</p>
<p><a href="http://www.texotela.co.uk/code/jquery/select/" rel="nofollow">http://www.texotela.co.uk/code/jquery/select/</a></p>
<p>You can select options using regular expressions, to just select everything</p>
http://stackoverflow.com/questions/1237907/where-to-place-jquery-code-in-asp-net-mvc-view-page/1237936#12379367Answer by qui for Where to place jQuery code in ASP.NET MVC view page?qui2009-08-06T09:44:16Z2009-08-06T09:44:16Z<p>You can include more content place holders in your master page, which your content pages can then fill with thier own JQuery</p>
<p>So in the head of your master page make something like:</p>
<pre><code><asp:ContentPlaceHolder ID="Javascript" runat="server" />
</code></pre>
<p>Then in your view pages </p>
<pre><code><asp:Content ID="Content1" ContentPlaceHolderID="Javsacript" runat="server">
//js here
</asp:Content>
</code></pre>
<p>That said, you should maybe consider including your javsascript in seperate JS files and include them, to seperate your concerns a bit.</p>
http://stackoverflow.com/questions/1708694/sql-group-with-order-by/1708707#1708707Comment by qui on SQL Group with Order by qui2009-11-10T15:19:59Z2009-11-10T15:19:59ZPerfect! Thankshttp://stackoverflow.com/questions/1668451/move-item-to-top-of-list-linq/1668473#1668473Comment by qui on Move item to top of list (linq)qui2009-11-03T16:41:07Z2009-11-03T16:41:07ZThis is more or less what i did any way, but thanks for the explanation as to why there is seemingly not a better way :)http://stackoverflow.com/questions/1668451/move-item-to-top-of-list-linqComment by qui on Move item to top of list (linq)qui2009-11-03T16:35:27Z2009-11-03T16:35:27ZJust push the rest downhttp://stackoverflow.com/questions/1542611/simple-linq-question-how-to-select-more-than-one-column/1542630#1542630Comment by qui on Simple Linq question: How to select more than one column?qui2009-10-09T09:46:37Z2009-10-09T09:46:37ZI'm guessing it's because you dont have a constructor which allows this. Make a constructor for your Benutzer class and do it the normal way. select new Benutzer(myCol, myCol2, etc..)http://stackoverflow.com/questions/1542611/simple-linq-question-how-to-select-more-than-one-column/1542630#1542630Comment by qui on Simple Linq question: How to select more than one column?qui2009-10-09T09:16:04Z2009-10-09T09:16:04ZI just tried it on my machine with a very similar use case and it worked. Can you paste the exact error?http://stackoverflow.com/questions/1542611/simple-linq-question-how-to-select-more-than-one-column/1542630#1542630Comment by qui on Simple Linq question: How to select more than one column?qui2009-10-09T09:13:12Z2009-10-09T09:13:12ZYou need a comma to seperate the fields, although i doubt that's why it's breakinghttp://stackoverflow.com/questions/1503941/div-equal-height-within-floated-row/1503989#1503989Comment by qui on DIV equal height within floated "row"qui2009-10-01T14:03:38Z2009-10-01T14:03:38ZBut his way does make more sense and would be easier...http://stackoverflow.com/questions/1477935/best-tell-tale-sign-on-their-first-day-that-a-programmer-might-not-work-outComment by qui on Best tell-tale sign on their first day that a programmer might not work out?qui2009-10-01T09:04:23Z2009-10-01T09:04:23ZYou should suggest in the next interview that they microwave some mashed potato. http://stackoverflow.com/questions/32757/where-can-i-get-asp-mvc-hosting/1502769#1502769Comment by qui on Where can I get ASP MVC hosting?qui2009-10-01T08:59:26Z2009-10-01T08:59:26ZNice of you to sell your services there..http://stackoverflow.com/questions/1476699/union-on-two-big-linq-queries-not-supported-how-do-i-get-around-it-if-at-all-po/1477080#1477080Comment by qui on Union on two big LINQ queries not supported. How do I get around it (if at all possible)qui2009-09-25T13:51:24Z2009-09-25T13:51:24ZYeah that's an exceptionhttp://stackoverflow.com/questions/1431959/asp-net-mvc-posted-entity-not-mapping-to-linq-modelComment by qui on ASP.NET MVC posted entity not mapping to LINQ modelqui2009-09-16T10:15:27Z2009-09-16T10:15:27ZJust something that wraps around a db context, offering some methods to work with users. The SaveChanges() method simply calls db.SubmitChanges()http://stackoverflow.com/questions/1431959/asp-net-mvc-posted-entity-not-mapping-to-linq-model/1432062#1432062Comment by qui on ASP.NET MVC posted entity not mapping to LINQ modelqui2009-09-16T10:13:36Z2009-09-16T10:13:36ZThanks, I knew I had to be forgetting something. However, it is throwing the following exception: The model of type 'MyProject.User' was not successfully updated. What could be causing this?http://stackoverflow.com/questions/1431959/asp-net-mvc-posted-entity-not-mapping-to-linq-modelComment by qui on ASP.NET MVC posted entity not mapping to LINQ modelqui2009-09-16T09:40:55Z2009-09-16T09:40:55ZHow do you check for that? http://stackoverflow.com/questions/1431959/asp-net-mvc-posted-entity-not-mapping-to-linq-modelComment by qui on ASP.NET MVC posted entity not mapping to LINQ modelqui2009-09-16T09:35:55Z2009-09-16T09:35:55ZYeah it definitly has a value http://stackoverflow.com/questions/1393583/linq-to-xml-getting-value/1393594#1393594Comment by qui on LINQ to XML getting valuequi2009-09-08T11:59:16Z2009-09-08T11:59:16ZHow did I miss this?! Thanks