Posted by: intelbot on: June 23, 2009
My last Saturday & Sunday was filled with full of excitement, as I spent my time at Tech.Ed, organised by BDotNet.in & BITPro Communities, listening to their wonderful sessions. It was sponsered by Infragistics, telerik,ineta & Microsoft UGSS. It was really a wonderful experience.The main reason for me to attend this event was to know [...]
Posted by: intelbot on: June 11, 2009
Most of the web developers will know about Fiddler. Using Fiddler u can log the HTTP traffic between your application & Webservice, here Fiddler acts as a proxy in between your application & the Webservice. To Use with ASP.NET set the following into your web.config, it will start logging all the HTTP Traffic. <system.net> <defaultProxy> [...]
Posted by: intelbot on: May 5, 2009
Method : Usage :
Posted by: intelbot on: April 1, 2009
I need to write comments for the below code, bcoz of lack of time i am posting only abstract things,if you want to know something, write comment, i will reply. HTML login control < input type=”text” name=”txtUserName” id=”txtUserName” class=”textBoxes” /> jQuery Rule: Add the below rule into script tag in header & add reference to [...]
Posted by: intelbot on: March 19, 2009
NLog is a .NET Logging Library, Official Site mentions it as follows, NLog is a .NET logging library designed with simplicity and flexibility in mind. With NLog you can process diagnostic messages emitted from any .NET language, augment them with contextual information, format them according to your preference and send them to one or more [...]
Posted by: intelbot on: March 19, 2009
If NLog Intellisense is not working in Visual Studio then copy NLog.xsd into following location Visual Studio 2008 C:\Program Files\Microsoft Visual Studio 9.0\Xml\Schemas Visual Studio 2005 C:\Program Files\Microsoft Visual Studio 8\Xml\Schemas
Posted by: intelbot on: March 9, 2009
1. Open Visual Studio 2. Go to Tools > Options 3. Check Show all setting check box 4. Select Projects and Solutions from the tree 5. Check “Always Show solution” checkbox 6. Click Ok 7. Now Select Create New Project 8. From tree List select Other Project Types 9. Then Visual Studi Soultions, You will see [...]
Posted by: intelbot on: February 26, 2009
Posted by: intelbot on: February 17, 2009
Advantages of Self-Hosting: Is easy to use: With only a few lines of code you have your service running. Is flexible: You can easily control the lifetime of your services through the Open() and Close() methods of ServiceHost. Is easy to debug: Debugging WCF services that are hosted in a self-hosted environment provides a familiar [...]
Posted by: intelbot on: September 8, 2008
Recently after deploying our application, our modifications were not showing up then we rebuilt the solution and it worked, till that time i did not break my head understanding what Build & Rebuild was. Here is what i found out. Build means compile and link only the source files that have changed since the last [...]
Posted by: intelbot on: July 22, 2008
Both are XML files *.xml Files can be rendered on browser i.e, if u know the path of XML you can access it and see the contents on Browser. *.config file can’t be rendered on browser i.e, even if u know the path of XML(*.config) file you can’t access it and see the contents on [...]
Posted by: intelbot on: March 27, 2008
Following are the tutorials i hope are good to learn ASP.NET. 1. http://msconline.maconstate.edu/tutorials/ASPNET20/default.htm2. http://www.asp.net/learn/ Will keep posting such useful stuff whenever i find.
Posted by: intelbot on: February 21, 2008
Path names in ASP.NET may be confusing, but the concepts are simple: Physical paths refer to the server’s filesystem (e.g., c:\inetpub\wwwroot\index.aspx).Virtual paths refer to HTTP paths, the stuff in the browser address bar. They come in two types: absolute and relative. Absolute virtual paths are exactly what you see in the browser, starting with the [...]
Posted by: intelbot on: December 5, 2007
Following are the ASP.NET interview questions usually asked for experienced people. * What is View State? Can you read the View State? – It is ASP.NET State Management Technique to persist changes to the state of a Web Form across post backs. It stores the data in the form of Dictionary (i.e., in Key /Value [...]
Posted by: intelbot on: June 5, 2007
Learnt a new thing today:- Ever tried using Form Validators on a form which would be opened in a Non MS IE browser?You will be surprised to see that the client side validation doesn’t work even though you have set cleintvalidation to True.Only the server side validation work for Non MS IE Browsers. The reason [...]
Posted by: intelbot on: March 27, 2007
When you try to debug an ASP.NET application in Visual Studio.NET. you may receive the following debugging error. Error while trying to run project: Unable to start debugging on the web server. The project is not configured to be debugged. Following are reasons and solutions for this problems. Possibility 1: You are not a part [...]