How to pass the Odesk ASP.Net 3.5 using C# Test 2012
|
|
comments (1)
|
Web.config File - ASP.NET
|
|
comments (0)
|
Web.config files are stored in XML format which makes us easier to work with.
Image preview before uploading using AsynFileUpload
|
|
comments (0)
|
It is always nice to show the preview of the image which has to be uploaded by the user.
After lot of searching I found that the HTML upload i.e input type="file"... is not useful as it does not expose enough server side events. For this scenario the better control is Ajax control ToolKit's AjaxFileUpload, which has enough server side events and client side events.
After the file is uploaded instead ...
How to Integrate Asp.Net application in Facebook
|
|
comments (0)
|
How to Integrate Asp.Net application in Facebook
Read Full Post »How can a formcollection be enumerated in ASP.NET MVC?
|
|
comments (1)
|
Here are 3 ways to do it specifically with a FormCollection object.
public ActionResult SomeActionMethod(FormCollection formCollection)
{
foreach (var key in formCollection.AllKeys)
{
var value = formCollection[key];
}
foreach (var...
Read Full Post »ASP.Net Chart Control On Shared Hosting Environment
|
|
comments (0)
|
Chart Control of ASP.Net 3.5 is very handy way to get statictical data as charts. There are variety of ways to display data with Chart Control. Also it is extramely simple to adapt it to your project. But as I hear from so many ASP.Net user nowadays, there might be some problems when it comes to publish it on your web server, especially on shared hosting servers !
After you install the Chart Control, in order to run ASP.Net chart c...
Read Full Post »how to create and consume webservice using asp.net
|
|
comments (0)
|
What is Web Service?
Web Service is an application that is designed to interact directly with other applications over the internet. In simple sense, Web Services are means for interacting with objects over the Internet. The Web serivce consumers are able to invoke method calls on remote objects by using SOAP and HTTP over the Web. WebService is language independent and Web Services communicate by using standard web protocols and data formats, ...
Read Full Post »ASP.NEt Interview Question
|
|
comments (1)
|
1. Explain the life cycle of an ASP .NET page.?
Following are the events occur during ASP.NET Page Life Cycle:
1)Page_PreInit
2)Page_Init
3)Page_InitComplete
4)Page_PreLoad
5)Page_Load
6)Control Events
7)Page_LoadComplete
8)Page_PreRender
9)SaveViewState
10)Page_Render
11)Page_Unload
Among above events Page_Render is the only event which is raised by page. So we can't...
Read Full Post »Interview Question of .NET
|
|
comments (0)
|
Cookies
Definition: – A cookie is information that a Website puts on your hard disk so that it can remember something about you at a later time. (More technically, it is information for future use that is stored by the server on the client side of a client/server communication.)
In short, Cookie is client’s information for particular site stored on client’s PC.
Typically, a co...
Read Full Post »Introduction to JSON
|
|
comments (0)
|
Introduction
As we know Ajax is a web development technology that makes the server responses faster by enabling the client-side scripts to retrieve only the required data from the server without retrieving a complete web page on each request, which will minimize the data transferred from the server.
These requests usually retrieve xml formatted response, the xml responses are then parsed in the JavaScript code to render ...
Read Full Post »