Search Results

3
votes
4answers
585 views

Pros & cons between LINQ and traditional collection based approaches

Being relatively new to the .net game, I was wondering, has anyone had any experience of the pros / cons between the use of LINQ and what could be considered more traditional methods working with l …
0
votes

Pros & cons between LINQ and traditional collection based approaches

@john-boker - yes of course you're correct, as the LINQ would return a list (even if there were no matching items or there was only one) @ …
-1
votes

How can I check for IsPostBack in JavaScript?

Lots of options here. For a pure JS solution, have your page submit to itself, but with additional URL parameter (mypage.html?postback=true) - you can then get the page url with window.loca …
-5
votes

How can I use the button tag with ASP.NET?

Have you looked at <asp:ImageButton /> ? …
3
votes

ASP.NET MVC: How to use static HTML pages in MVC applications?

Obviously the .net MVC framework handles static content already for images / css / js etc. It would just be a matter of extending that (routing?) to pass .html files through straight to IIS. That …
0
votes

ASP.NET Server.Mappath problem from inner folders

Prefix your path string with a tilde (~) - this represents the root of the website: xmlSiteConfig.Load(System.Web.HttpContext.Current.Server.MapPath("~/myConfig.xml")); …
1
vote

Register User Control Issue

Remove either the initial slash from the path to the control, or better still, prefix it with "~" : <%@ Register Src="Controls/User/Navbar.ascx" TagName="Navbar" TagPrefix="pmc" …
2
votes

Client-side technology for a web-based game

My 2 cents: Html/Css/Javascript (aka AJAX) Plus: No client plugin required - "instant on", so you are open to a wider audience (No need to worry about flash v …
0
votes

In ASP.NET, how can I force the format of dates in a DropDownList to “DD/MM/YYYY”?

Just manually add the items to the DropDownList.Items collection instead of relying on DataBind(): DateTime date = DateTime.Now; for (int i = 0; i < HISTORY_LENGTH; i++) { …
2
votes

Adding ASP.NET control to page using jQuery

No, you can't add a server-side asp.net control to a page that has already been rendered using client-side techniques (aka Javascript) Two options: Firstly, switch to using a …