|
|
|
| You are here : HOME > ASP |
 |
 |
ASP.Net 2.0 Web Parts in Action: Building Dynamic Web Portals
Price : $44.99 $1.99
Average
Customer Rating : Not
yet rated |
|
Editorial Review :
"A must-buy for every ASP.NET developer using Web Parts." Scott Guthrie General Manager Microsoft Developer Division "Squeezes the full potential out of ASP.NET Web Parts." Andres Sanabria Lead Program Manager ASP.NET and Server Application Frameworks Using Web Parts, ASP.NET developers can create portals with the same advanced features found in sites such as Live.com and Google ig. ASP.NET 2.0 Web Parts in Action demystifies portal design, development, maintenance, and deployment. In over 400 code-packed pages, ASP.NET expert Darren Neimke shares his deep understanding of the controls and services that make up the portal framework. This book will help you to code like a guru but think like a user. For example, you'll discover how to use Web Parts to reduce four-step actions to a single click with a strategically-placed edit button. Learn to balance features and usability to make your portals both look good and work well. ASP.NET 2.0 Web Parts in Action gives you the tools you need to move your ideas off the whiteboard and bring them to life. Find out how to provide the personalization options your users want while preserving the look and feel of your portals with solid designs and custom chrome. Create usable information dashboards and tackle tough interoperability questions with confidence. All the information in this book is performance-tested. Author Darren Neimke walks you through Web Parts concepts including static and dynamic connections, WebPartManager, SQLPersonalizationProvider, and the hot new ASP.NET Atlas framework. Whether you're creating custom solutions or adding Web Parts to SharePoint 2007, exploring Atlas or dabbling in gadgets, ASP.NET 2.0 Web Parts in Action will get you started and guide you as you build successful portals using ASP.NET Web Parts.
Customer Review :
No review yet |
 |
Real World ASP.NET Best Practices
Price : $39.99 $14.05
Average
Customer Rating : Not
yet rated |
|
Editorial Review :
ASP.NET is a wonderful enabling technology that allows developers to create business solutions much more effectively than ever before. However, there is room for improvement. Developers often do not see the potholes and pitfalls related to this technology until they stumble. Real World ASP.NET Best Practices helps readers to avoid just such frustrations. The book's in-depth coverage includes data handling, caching, JavaScript, user and server controls, distributed programming, configuration, and deployment. Real World ASP.NET Best Practices goes far beyond the documentation to teach ASP.NET development best practices based on the authors' real-world experience. The book's emphasis is on helping developers perform tasks correctly and avoid mistakes, not on teaching ASP.NET in general.
Customer Review :
No review yet |
 |
Dynamic Website Development using HTML CSS and ASP (* 4 All Series)
Price : Click to see price
Average
Customer Rating : Not
yet rated |
|
Editorial Review :
It covers mainly all features of HTML, CSS, VB Script and ASP Programming language including use of Built in ASP objects, components, error handling etc…,. Code samples are presented in ASP and will execute under Macromedia Dreamweaver express edition and internet explorer. Throughout the book most of the programming features are explained through syntax and examples to develop state-of-the-art programs.
Customer Review :
No review yet |
 |
Programming Microsoft ASP.NET 3.5
Price : $59.99 $19.17
Average
Customer Rating : Not
yet rated |
|
Editorial Review :
Get the practical, popular reference written by ASP.NET authority Dino Espositonow updated for ASP.NET 3.5. An in-depth guide to the core features of Web development with ASP.NET, this book goes beyond the fundamentals. It expertly illustrates the intricacies and uses of ASP.NET 3.5in a single volume. Part of Microsoft Visual Studio® 2008, ASP.NET 3.5 includes AJAX functionality, the Microsoft Silverlight™ cross-platform development tool, new controls, and new integration features. This pragmatic guide covers these new features, and also includes coverage of Windows® Communication Foundation, LINQ, and other key Microsoft .NET Framework 2.0, 3.0, and 3.5 capabilities. Complete with extensive code samples and code snippets in Microsoft Visual C# 2008, this is the ideal reference for developers who want to learn what’s new in ASP.NET 3.5, or for those building professional-level Web development skills.
Customer Review :
No review yet |
 |
Beginning ASP Databases
Price : $39.99 $11.35
Average
Customer Rating : Not
yet rated |
|
Customer Review :
No review yet |
|
More
Results : [First] [Prev] 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 [Next] [Last]
Quick Link : 40 | 60 | 80 | 100
|
|
Questions & Answers
Question : Execution of the ASP page caused the Response Buffer to exceed its configured limit?
When i run asp file get this message how i can rectify this? Any body help me?
Answer:
You can try these ways: - add response.buffer = true on the top of your page - edit the metabase.xml file, look for the AspBufferingLimit that normally is around 4194304 (bytes, that means 4Mb) and increase that value. You do not need to stop IIS for the metabase.xml editing, but to make the Metabase.xml file write-able, you need to go to the IIS control panel, right click the server, select properties, and check off the box that says “allow changes to MetaBase configuration while IIS is running".ciao!
|
Question : How do i build a redirect from an asp site to a php site?
My company switched from an asp site to a php site. We want to build redirects so that we don't lose all of the good product reviews done by bloggers and other sources. Can someone give me the code so I can create these redirects. We were previously using network solutions. Now we are using joomla. Thank you for any help you can provide.Ashley
Answer:
@Laogeodr... That is a valid solution but you will still lose credibility with Google. If you want to keep some of your page rank, your also need to send a 301 permanent redirect so the search engines will know that the link has changed.RewriteEngine OnRewriteRule (.*)\.asp $1.php [R=301,L]
|
Question : I have a full ASP website script to sell. How can I find a buyer?
I have a fully developed ASP website script to sell. It has been running successfully for one year and 2 months now but I want to sell the script for anyone who has a business plan. It's a Multi-level marketing script, well customized with members and a good cash flow. Where can I go to list my ASP script based website for sale?
Answer:
try http://www.yaaad.com
|
Question : How to use aspnet_regsql command to enable asp file to recognize any change at the back-end sql database file?
And also update it at the front end asp site?
Answer:
And also update it at the front end asp site?
|
Question : Asp......?
Asp......?
Answer:
ASP = active server pages
|
Question : How come my photos go into asp notepad instead of jpeg?
So my cousin from another country sends me photos through e-mail. Every time I open it goes into asp notepad instead of jpeg. How do I fix it ?
Answer:
So my cousin from another country sends me photos through e-mail. Every time I open it goes into asp notepad instead of jpeg. How do I fix it ?
|
Question : How do change the text in a asp:Button control while mouseover?
How do change the text in a asp:Button control while mouseover?
Answer:
Hi,In Asp.Net, we can get the mouserOver event for button using Page add attributes...For Example:You can use this type to fire Button Onmouse over event...PageLoad(){ btnExMouseOver.Attributes.Add("onmouseover", "return validate();"); } Then just using java script for that function in HTML pageex: | | |