|
|
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
30 Articles match "Pages"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential LINQ with the Entity Framework
These include the LinqDataSource (for LINQ support), the ListView (for flexible two-way data-bound templates), and the DataPager (for flexible paging). In this course, you learn to: Leverage new features of C# 3.0, Learn to combine flavors of LINQ to query and transform in-memory collections, XML data sources, and relational databases. Learn to develop applications for EF and LINQ to Entities and employ ADO.NET Data Services to integrate data from the Internet cloud. Apply techniques for building real-world data-driven applications, including ASP.NET and WPF data binding.
DevelopMentor Courses
- Friday, June 12, 2009
SharePoint for Developers (WSSv3/MOSS2007)
You'll get answers to these questions: How do I understand the page-processing and request-processing framework? How can I build custom lists, pages, master pages, web parts, event handlers, content types and more? We examine what a web application is, what site collections are, where critical files are stored, how pages are processed, and how to locate and manage the important information. Custom Pages, Branding with Master Pages and CSS files Creating custom pages and adding them to sites used to be difficult. With WSS v3, all that has changed.
DevelopMentor Courses
- Friday, June 12, 2009
Essential Silverlight 3
You will also examine the various validation techniques that can be used to control user input; how to manage paging, and you will enjoy an introduction to.NET RIA Services, Microsoft's next generation technology for simplifying the creation of complex, multi-tier applications. The popularity of Ajax shows that traditional Web developers understand the importance of the asynchronous updates to their pages. The connection works within a page, across processes, across browsers, and even with Silverlight apps running out-of-browser. All materials supplied.
DevelopMentor Courses
- Wednesday, June 17, 2009
|
148 Articles match "Pages"
|
The Latest from DevelopMentor
|
MORE
|
|
Moving StarterSTS to the (Azure) Cloud
also include a (very) simple web page that allows working with the relying party provider data. Quite some people asked me about an Azure version of StarterSTS. While I kinda knew what I had to do to make the move, I couldn’t find the time. Until recently. This blog post briefly documents the necessary changes and design decisions for the next version of StarterSTS which will work both on-premise and on Azure. Provider. Fortunately StarterSTS is already based on the idea of “providers”. Authentication, roles and claims generation is based on the standard ASP.NET provider infrastructure.
www.leastprivilege.com
- Wednesday, August 11, 2010
WIF, ASP.NET 4.0 and Request Validation
To solve this, request validation needs to be turned off for pages receiving such a response message. Since the response of a WS-Federation sign-in request contains XML, the ASP.NET built-in request validation will trigger an exception. Starting with ASP.NET 4.0 you can plug in your own request validation logic. This allows letting WS-Federation messages through, while applying all standard request validation to all other requests. The WIF SDK (v4) contains a sample validator that does exactly that: public class WSFedRequestValidator : RequestValidator. {. WSFederationConstants.
www.leastprivilege.com
- Saturday, July 24, 2010
Remote emacsclient via ssh
found this page to fix the problem. I have an emacs daemon on another machine running Ubuntu. am sitting at a Windows machine with Cygwin/X. ve launched “startxwin” to get a local X server and pulled up an xterm. connect to the remote machine with ssh –X and attempt to run “emacsclient –n –c”. The error I get is “X11 connection rejected because of wrong authentication.” No luck. For some reason $XAUTHORITY is blank, but it needs to be set to the same value that emacs has. To fetch that value, run: emacsclient –e “(getenv ”XAUTHORITY”)”. Follow the directions in that email.
Handwaving
- Thursday, July 15, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
Paging with the Silverlight RIA services DomainDataSource
Adding paging. In that case all you need to do is add a PageSize and the DomainDataSource will only load enough data to display on a single page. You can do this by just setting the PageSize on the DomainDataSource but as we also need a control to allow the user to page trough the data it is easier to also add the DataPager control. found that setting it on either would work just was well except for the initial load where the DataPager shows page 0 when the PageSize is set on the DomainDataSource while it is set to 1, the correct value, when set on the DataPager.
The Problem Solver
- Monday, April 27, 2009
-
Blogging Refocus and Page Size
Page Size Optimization. One of my goals in redesigning the site was to reduce the page size a bit. My quest for page size reduction began with cleaning out the old WordPress theme. For example, by removing Recent Posts and Recent Comments from the footer, I reduced the amount of HTML and gained the happy side effect of reducing the number of database hits required to build a page. of compressed HTML for the home page. Dropping the number of posts shown on the home page from 10 to 5 brought things down to 7.7K. off the page size. New Design.
Ardent Dev
- Wednesday, February 3, 2010
-
Visual Studio and ASP.NET Master Pages
I finally got tierd of the bug in the Visual studio designer for ASP.NET master pages. The issue is this, if you don’t hardcode the master page for the page in the page itself the designer will not see that you are using master pages, even if you define one in the pages section of web.config. This greatly defeats one of the objectives of master pages in that I would like to tweak the master page at deployment time, and the default behavior is page value overrides config file.
.NET Mutterings
- Friday, July 7, 2006
-
How to use a publishing page as display form
A client wanted to place a SharePoint calendar on a publishing page and have it configured such that when you clicked an event the full details showed up at the top of the page, and searching for calendar items should also put you at this page. Sounds easy just put the calendar view on the page and set the calendars display form to be that page. But setting the display form to be the publishing page puts the ID of the calendar item in the URL of the publishing page which then confuses SharePoint as it thinks it has to lookup that id in the Pages list.
The Black Knight Sings
- Friday, June 27, 2008
-
ASP.NET: Internet Explorer Cannot Display the Web Page
The result was that pressing F5 or Ctrl-F5 to run an ASP.NET web app from Visual Studio 2008 resulted in a page in IE7 that said “Internet explorer cannot display the web page. Interestingly, Firefox had no problem displaying the web page. After that IE7 displayed the web page property for localhost addresses. After installing a recent Windows Update, I was no longer able to run ASP.NET web apps using localhost. To rectify the issue, I just had to open the hosts file and add the following entry: 127.0.0.1 localhost.
Tony and Zuzana's World
- Wednesday, March 11, 2009
-
ASP.NET: Internet Explorer Cannot Display the Web Page
The result was that pressing F5 or Ctrl-F5 to run an ASP.NET web app from Visual Studio 2008 resulted in a page in IE7 that said “Internet explorer cannot display the web page. Interestingly, Firefox had no problem displaying the web page. After that IE7 displayed the web page property for localhost addresses. After installing a recent Windows Update, I was no longer able to run ASP.NET web apps using localhost. To rectify the issue, I just had to open the hosts file and add the following entry: 127.0.0.1 localhost.
Tony and Zuzana's World
- Wednesday, March 11, 2009
-
Marshalling native function pointers
An important difference of these heaps is that the code heap consists of memory pages that have the attribute PAGE_EXECUTE_READWRITE. p2); MEMORY_BASIC_INFORMATION mbi; VirtualQuery(p1.ToPointer(), &mbi, sizeof(mbi)); // thunks are allocated on a heap that consits of pages // with the PAGE_EXECUTE_READWRITE flag. Debug::Assert((mbi.Protect & PAGE_EXECUTE_READWRITE) ==. PAGE_EXECUTE_READWRITE); void* pD1 = *(void**)&d1; // hack to get native pointer to delegate. Debug::Assert((mbi.Protect & PAGE_READWRITE) ==. struct CallbackData. {. of the CLR.
Marcus' Blog
- Friday, April 6, 2007
|
|
|