DCSIMG
ASP.NET - Gady Elkarif's Blog

Gady Elkarif's Blog

Browse by Tags

All Tags » ASP.NET (RSS)
Develop Facebook Application using Facebook Developer Toolkit
Develop Facebook Application using Facebook Developer Toolkit Lets see how it easy to create new application in Facebook , using Facebook Developer Toolkit. Create new Facebook Application Add the Developer Application to your account at Facebook . Now you can set up a new application: Facebook will provide you API Key and Secret Key you will use later. Set up the following properties: FBML/iframe - iframe Application Type - Website Callback URL - <Your callback URL, see next step> for example...
REST Friendly URLs
REST Friendly URLs Lest say you have an articles site, which have: Category: credit-card Sub Category: student Article Id: students-heed-parents-on-credit-card-advice The following two samples describes the difference between friendly URLs and Dirty URLs: Dirty URLs http://.../article/Article.aspx?categoryId=credit-card&subCategoryId=student&articleId=student-article http://.../Category.aspx?categoryId=credit-card http://.../SubCategory.aspx?categoryId=credit-card&subCategoryId=student...
WCF and ASP.NET AJAX Integration
WCF and ASP.NET AJAX Integration This post is part of WCF REST Presentation I show last week at Microsoft. I played with the WCF and ASP.NET AJAX integration, and created a sample web site which by can integrate WCF service with Microsoft Virtual Earth . The Service Contract The following contract is simple service contract with one method GetLocation(). The namespace "Sample.Services" will be used later as a prefix to the generated proxy. AspNetCompatibilityRequirementsMode allows the...
Using the ASP LinqDataSource Control
Using the ASP LinqDataSource Control With ASP.NET LinqDataSource Control we can bind Web Pages to retrieves or modify data by using the advantages of the unified programming model that provided by LINQ . My goal is to create Articles site using ASP.NET, on which all the articles are stored in SQL Server tables. Articles Database Schema Starting with the schema, for simplicity, the site will use two level of categories: main and secondary. Table Categories - Contains all the main categories and their...
Using DragPanelExtender to Drag and Drop Silverlight Control
Using DragPanelExtender to Drag and Drop Silverlight Control In previous post ASP.NET AJAX DragPanelExtender I was displaying how to use ASP.NET AJAX DragPanelExtender Control to drag and drop content in your ASP.NET web pages. In order to drag and drop a Silverlight Control you need to: Create your Silverlight Project . Add DragPanelExtender into your page as described in the previous post: ASP.NET AJAX DragPanelExtender The html content of your web page should contain something like: < body...
ASP.NET AJAX DragPanelExtender
ASP.NET AJAX DragPanelExtender Hi, In this post, I will show you how to create and use the DragPanel Control of ASP.NET AJAX . The DragPanel Control allow you to move the panel around your web page in your ASP.NET application. So lets start with creating new AJAX Control Toolkit Web Site in your Visual Studio. In previous post Using the ASP.NET AJAX Calendar Control you can see how to install the AJAX Control Toolkit . The Panel Control Lets drag a Panel Control into our page and call it PanelContainer...
Posted: Apr 02 2008, 10:48 PM by egady | with 12 comment(s)
תגים:,
Using the ASP.NET AJAX Calendar Control
Using the ASP.NET AJAX Calendar Control This post is about using of the Calendar extender control from the ASP.NET AJAX Control Toolkit. For using the ASP.NET AJAX Control Toolkit toolkit, you need to download the ASP.NET AJAX Control Toolkit from http://www.asp.net/ajax/downloads/ . Installing the ASP.NET AJAX Control Toolkit Download the AJAX Control Toolkit source code, extract it into folder ..\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\AJAX Control Toolkit , create new folder...
Posted: Mar 15 2008, 07:34 PM by egady | with 15 comment(s)
תגים:,
Displaying Chart using Silverlight 2 User Control
Displaying Chart using Silverlight 2.0 User Control In this post I'm going to create a Chart User Control using Silverlight 2.0 . In previous post My New Innovative Project I talked about the application I'm developed, which is related to the finance market, and for that I need to display a financial chart. This chart is responsible for historical prices, and the data is received from a csv file as described in CsvReader and Linq. This chart is only first version and it will improved with...
Creating Silverlight Controls and Web Service with ASP.NET Futures
Creating Silverlight Controls and Web Service with ASP.NET Futures In this post I will demonstrates how Silverlight 1.1 can received and display data from a web service using the controls from ASP.NET Futures package. Microsoft ASP.NET Futures July 2007 The Microsoft ASP.NET Futures July 2007 release contains an early developer preview of features providing new functionality for ASP.NET and Silverlight . There are two new ASP.NET server controls: a Media server control for integrating media sources...