Blue Ray Plus - Latest Technology News - Upcoming stories
1
Ups

Entity Framework Add Remove Attach and Detach

posted by adminadmin 11 days, 11 hours, 27 minutes ago
Friday, May 10, 2013 8:01:26 AM GMT
Post navigation← PreviousNext →Posted on by Leon van Bokhorst The DbContext of Entity Framework lets us add, remove, attach and detach entities to and from it. Calling SaveChanges on the DbContext the Entity Framework performs different actions on entities dependant on their EntityState. So an added entity gets inserted, a removed entity gets deleted and so on. In this example we use the AssemblyItem entity from a previous post to perform some of the most common actions on the entities and DbContext. ... (more)
category: ASP.NET | clicked: 0 | comment | | source: www.remondo.net
tags: Entity framework
1
Ups

Is EntityState.Modified required for an update?

posted by adminadmin 11 days, 11 hours, 42 minutes ago
Friday, May 10, 2013 7:46:21 AM GMT
RqnaHomeAsk a QuestionMembersTrendsTopicsSubjectsAdvanced SearchQuestions and Answers > Technology > ProgrammersRSSAsked by John on I've seen alot of people when updating a record they would use: ... ms.Status = status; db.Entry(ms).State = EntityState.Modified; db.SaveChanges(); is this line required ? I was able to do an update without it. db.Entry(ms).State = EntityState.Modified; I was wondering what this statement is actually used for if the context already knows it should update that reco... (more)
category: ASP.NET | clicked: 0 | comment | | source: www.rqna.net
tags: ASP.NET
1
Ups

RAW Paste Data

posted by adminadmin 11 days, 11 hours, 47 minutes ago
Friday, May 10, 2013 7:41:27 AM GMT
Entitystate.Modified mvc3 reference object not saved Context db=new Context(); public void modifieTraining(Training training) { db.Entry(training.Location).State = EntityState.Modified; db.Entry(training.Trainer).State = EntityState.Modified; db.Entry(training).State = EntityState.Modified; db.SaveChanges(); } @Html.DropDownList("trainer", new SelectList(ViewBag.Trainer, "TrainerId", "Firstname"), "Selecteer een trainer") @Html.TextBoxFor(model => model.Location.Address) @Html.Text... (more)
category: ASP.NET | clicked: 0 | comment | | source: pastebin.com
tags: ASP.NET
1
Ups

Why do I need to call EntityState.Modified ?? What is the use of attach then? Example.

posted by adminadmin 11 days, 11 hours, 54 minutes ago
Friday, May 10, 2013 7:34:26 AM GMT
Sign In to Vote 0 I have 2 class Product = {Name = "Microsoft", Id = 100} Child = { Name = "MS Office", Id = 1, ParentId = 100, Rating = 1} Child = { Name = "MS Mobile", Id = 3, ParentId = 100, Rating = 2} When I use EF 4 POCO. (no Self tracking) Client- aProduct = Get(100); aProduct.Child.First().Rating = 5; service.SaveProduct(aProduct) Server- SaveProduct(aProduct) { var context = new context(); context.attach(aProduct); don't work. this work: Context.ObjectStateManager.ChangeObjectState(... (more)
category: ASP.NET | clicked: 0 | comment | | source: social.msdn.microsoft.com
tags: ASP.NET
1
Ups

Cutting Edge: Explore Rich Client Scripting With jQuery, Part 1

posted by adminadmin 11 days, 12 hours, 6 minutes ago
Friday, May 10, 2013 7:22:14 AM GMT
The jQuery Object Selectors Filters Form Filters Operations on Wrapped Sets jQuery Chainability Know Your HTML You know how it is. The more functionality you want to squeeze out of the Web browser, the more you have to write in JavaScript. Introduced around 1995 to add more action to HTML pages, the JavaScript language was not expressly designed for developers. It was actually designed to manipulate HTML elements, set styles, and react to user input. It has also been widely used for client-side input val... (more)
category: ASP.NET | clicked: 0 | comment | | source: msdn.microsoft.com
tags: ASP.NET
1
Ups

Caching in ASP.NET

posted by adminadmin 13 days, 7 hours, 11 minutes ago
Wednesday, May 08, 2013 12:17:25 PM GMT
Caching is one of the coolest features in Asp.net. Caching enables you to store the expensive data into Cache object and later retrieve it without doing expensive operations. A very common example where you want to use caching is datagrid paging. I am sure you all are familiar with datagrid paging which enables you to view the records in multiple pages. Each time you visit a different page all the records are fetched from the database. This becomes very expensive operation. Caching can save a lot of expe... (more)
category: ASP.NET | clicked: 0 | comment | | source: www.exforsys.com
tags: Caching and State Management
1
Ups

Caching to Improve the Performance of Your Website : The Official Microsoft ASP.NET Site

posted by adminadmin 13 days, 7 hours, 33 minutes ago
Wednesday, May 08, 2013 11:54:56 AM GMT
The Official Microsoft ASP.NET SiteLanguageTranslate this page Powered by Microsoft® Translator Sign In|JoinHome Get Started Downloads Web Pages Web Forms MVC Solutions FRAMEWORKSWeb PagesWeb FormsMVCEntity FrameworkTECHNOLOGIESWeb APISingle Page ApplicationAjaxMobileSignalRCURRENT RELEASESLatest Release 2012.2ASP.NET 4.5ASP.NET MVC 4ASP.NET Web Pages 2 Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources Communit... (more)
category: ASP.NET | clicked: 0 | comment | | source: www.asp.net
tags: ASP.NET
1
Ups

C# interview question with answers :- What is the use of Yield keyword in C# ? Video Tutorials

posted by adminadmin 13 days, 8 hours, 15 minutes ago
Wednesday, May 08, 2013 11:13:42 AM GMT
Congratulations to all the winners of April 2013, they have won INR 3400 cash and INR 20147 worth prizes ! HomeFreshersCareer AdviceArticlesInterviewsVideosForumsCodesBlogsJobsASP.NET MVCCommunityJokesChatMVPs | ASP.NET, WPF, SSIS etc. tutorials | Catalog | Coding Horror | Downloads | Quick Links | Top Posts | Top Authors | .NET News | Bookmarks | Search | Subscribe Online : 53621 |  Welcome, Guest!   Register  LoginHome > Tutorials > Video Tutorials > C# > C# interview question with answers :- Wh... (more)
category: ASP.NET | clicked: 0 | comment | | source: www.dotnetfunda.com
tags: C#
1
Ups

Build a Web Chat Application using ASP.Net 3.5, LINQ and AJAX (in C# 3.5)

posted by adminadmin 17 days, 12 hours, 13 minutes ago
Saturday, May 04, 2013 7:14:52 AM GMT
A Java Programmer friend of mine once asked me if I have ever built a web chat application. I said "No". He then asked me if I were to build a really simple, monitored, bare minimum, working web chat application, how long do I think will it take (something to that effect). I said, "I don't know". A few days had passed, one lazy evening, I was surfing the web looking for ASP.Net web chat applications. It seems that I can't find one that is simple enough to implement. So I decided to just build something s... (more)
category: ASP.NET | clicked: 0 | comment | | source: www.junnark.com
tags: AJAX, ASP.Net 3.5, C# 3.5, javascript, LINQ-to-SQL, MS SQL Server 2000/2005
1
Ups

Microsoft ASP.NET 4 : Caching and State Management - The Wizard Control: An Alternative to Session State - Windows XP - allcomputers.us

posted by adminadmin 18 days, 9 hours, 34 minutes ago
Friday, May 03, 2013 9:54:31 AM GMT
Windows XPWindows VistaWindows 7Windows AzureWindows ServerWindows Phone  Windows XPOne of the most common uses for session state is to keep track of information coming from a user even though the information is posted back through several pages. For example, scenarios such as collecting mailing addresses, applying for security credentials, or purchasing something on a Web site introduce this issue. Sometimes the information to be gathered is minimal and can be done through only one page. Howe... (more)
category: ASP.NET | clicked: 0 | comment | | source: allcomputers.us
tags: Caching and State Management
1
Ups

Helper Method for ASP.NET Wizard Controls - Life on Planet Groove

posted by adminadmin 18 days, 9 hours, 37 minutes ago
Friday, May 03, 2013 9:51:05 AM GMT
← Performance Optimizations for Large Programmatic User Profile ImportsUsing Feature XML Files to Store Timer Job Configuration Settings →ASP.NET, TechnologyAdam Toth on I enjoy working with the ASP.NET Wizard control – it’s one of the more useful controls available, and there always seems to be a place for a wizard in the custom apps I’ve written. Over time I’ve developed a helper method that makes it easier to do non-linear jumps from step to step.GetIndexFromStep(WizardStepBase step) Often, in a Ne... (more)
category: ASP.NET | clicked: 0 | comment | | source: www.lifeonplanetgroove.com
tags: asp.net wizard
1
Ups

RadWindowManager

posted by adminadmin 18 days, 9 hours, 49 minutes ago
Friday, May 03, 2013 9:39:34 AM GMT
WindowControlsAjaxAutoCompleteBoxBarcodeBinaryImageButtonCalendarCaptchaChart (HTML5)ChartColorPickerComboBoxDataPagerDockDropDownListDropDownTreeEditorFileExplorerFilterFormDecoratorGaugeGridImageEditorInputListBoxListViewMenuNotificationODataDataSourceOrgChartPanelBarPersistence FrameworkPivotGridProgress AreaRatingRibbonBarRotatorSchedulerSearchBoxSiteMapSliderSocialShareSpellSplitterTabStripTagCloudToolBarToolTipTreeListTreeViewUpload (Async)Upload (Obsolete)WindowXmlHttpPanelZipLibrarySharePoint Web... (more)
category: ASP.NET | clicked: 0 | comment | | source: demos.telerik.com
tags: RadWindowManager
1
Ups

asp.net wizard control sidebar template customization | are.ehibou.com

posted by adminadmin 18 days, 9 hours, 51 minutes ago
Friday, May 03, 2013 9:36:48 AM GMT
Homeare.ehibou.com are.ehibou.com Web LogCommentsPosts    FriendsAre PayPal WordPress PlugineHibouMecki Hedgehog Postcardssport skeletonSymbolsworld-estateUseful linksBOINCBoinc Related SearchMPITanveer Hossain Khanubuntu.ltubuntulinux.orgvtu@homeArchivesMetaRegisterLog inEntries RSSComments RSSWordPress.org « C# .NET project fails to compile because of System.Data.SqlClient SortOrder data type.    Microsoft SQL Server: How to find not partitioned tables » Question: How to change sidebar template of... (more)
category: ASP.NET | clicked: 0 | comment | | source: are.ehibou.com
tags: Wizard
1
Ups

Asp.Net Rating User Control

posted by adminadmin 18 days, 9 hours, 53 minutes ago
Friday, May 03, 2013 9:34:49 AM GMT
Home/ASP.net/Asp.Net Star Rating User Control— Leave a comment With a little CSS, a tiny amount of jQuery and a little ingenuity you can easily create a reusable Asp.Net star rating system for your site.The Basics For the CSS I decided there was no reason to re-invent the wheel, so I used Komodo Media’s CSS Star Rating Part Duex for the styles, although I did rename them (only because I prefer short, simple class names). Here’s the basic HTML structure of the rating system: (more)
category: ASP.NET | clicked: 0 | comment | | source: codingboynamedtracy.com
tags: Asp.Net Rating User Control
1
Ups

ASP.NET Wizard Control.

posted by adminadmin 18 days, 9 hours, 54 minutes ago
Friday, May 03, 2013 9:33:51 AM GMT
ElectronicsSoftwareComputersHandheldsLaptops and TabletsMobile PhonesDigital CamerasCamcordersGamesMusicBooksSportMens and Womens WatchesPower ToolsHousehold appliancesSoftwareDownloads2012 SoftwareMac SoftwareSecurityStudent EditionsWindows 7Office 2010ASP.NET Controls. AdRotator control BulletedList control Button control Checkbox control CheckboxList control DropdownList control HyperLink control Image control ImageButton control ImageMap control LinkButton control Label control Listbox c... (more)
category: ASP.NET | clicked: 0 | comment | | source: www.speakcomputers.com
tags: Wizard
1
Ups

asp:Wizard control - hiding "next" button on certain steps. - ASP.NET

posted by adminadmin 18 days, 9 hours, 57 minutes ago
Friday, May 03, 2013 9:31:03 AM GMT
CareersCareer AdviceConsulting and ContractingHR and RecruitingInterview QuestionsResumes Portfolios and CertificationSalaries and CompensationITApache Web ServerComputer HardwareContent Management SystemsData ManagementDesktop SoftwareIIS / Internet Information ServerMac OS XMicrosoft ExcelMicrosoft Windows / Windows 7 / Vista / XPMobile Phones and PDAsNetworking - Hardware / ConfigurationSecurityUnix / Linux / BSDWeb ApplicationsWindows Server 2003 / 2008Software Development.NET FrameworkAPIsASP / Acti... (more)
category: ASP.NET | clicked: 0 | comment | | source: bytes.com
tags: Wizard
1
Ups

AJAX Rating Control

posted by adminadmin 18 days, 9 hours, 57 minutes ago
Friday, May 03, 2013 9:30:50 AM GMT
ARTICLE Posted by Ankit Nandekar inArticles| AJAX in C# onTags:.NET, AJAX, AJAX Rating Control, asp.net, C#, Visual studio 2010, web applicationThis article demonstrates how to use a Rating Control in ASP.Net using AjaxTweet76931 (more)
category: ASP.NET | clicked: 0 | comment | | source: www.c-sharpcorner.com
tags: Ajax rating control
1
Ups

Ajax rating control

posted by adminadmin 18 days, 9 hours, 59 minutes ago
Friday, May 03, 2013 9:29:34 AM GMT
Introduction: Here I will explain how to use Ajax rating control with database to display average rating for particular article using asp.net Description: Previously I explained how to use Ajax Collapsible panel . Now I will explain how to use Ajax rating control with Database in asp.net. In many sites we will see rating options for books, articles and movies etc by giving rating option to user we have chance to know about particular thing how much users are feeling comfort with particular thin... (more)
category: ASP.NET | clicked: 0 | comment | | source: www.aspdotnet-suresh.com
tags: Ajax rating control
1
Ups

Bipin Joshi.net | Thoughts on .Net & Coding - Using the Wizard control of ASP.NET

posted by adminadmin 18 days, 9 hours, 59 minutes ago
Friday, May 03, 2013 9:28:56 AM GMT
Introduction Some times the data to be accepted from the user is too much and splitting the entire form into multiple logical sections is desirable. In classic ASP or even ASP.NET 1.x developers used to create multiple web forms each containing a  part of the total information thus creating a wizard. However, this approach was often proved to be complex and time consuming. ASP.NET provides Wizard server control that allows hassle free development of such web forms. In this article we are goi... (more)
category: ASP.NET | clicked: 0 | comment | | source: www.bipinjoshi.net
tags: Wizard
1
Ups

How to use AJAX timer in ASP.NET

posted by adminadmin 18 days, 10 hours, 2 minutes ago
Friday, May 03, 2013 9:26:28 AM GMT
270How to use AJAX timer in ASP.NET pages (VB.NET Code) Introduction Suppose you need to update your web page on client computer's screen every one minutes without your client direct intention, then you may use the advantage of AJAX timer object. if this is the case you may found this walkthrough useful. Using the right code First of all you need to place a ScriptManager from AJAX extensions to the page: (more)
category: ASP.NET | clicked: 0 | comment | | source: amin.mahpour.com
tags: How to use AJAX timer in ASP.NET(VB.NET)
Previous 1 2 3 4 5 6 7 8 9 10 ... 16 17 Next