To resolve this error use below command in visual studio command prompt:
aspnet_regiis.exe -iru
Solution from : http://download.microsoft.com/download/0/A/E/0AEB3BC1-506E-4954-8AB1-4FA2EE75985C/ReleaseNotes.docx
Compiled By Rajesh Rol...
Monday, May 30, 2011
Saturday, May 28, 2011
Can we static methods/class can implement Interface
No, Method of interface cannot be implemented as a static methods because Methods specified on an interface should be there to specify the contract for interacting with an object. Static methods do not allow you to interact with an object - if you find yourself in the position where your implementation could be made static, you may need to ask yourself if that method really belongs in the interface.
The core design principle...
Thursday, May 26, 2011
Setup .NET Framework 4.0 on IIS 6
Steps to setup .NET Framework 4.0 on IIS 6 without effecting any existing website of lower version.
- Install framework asp.net 4.0 and restart [Web Platform Installer does it just fine]
- IIS 6.0 console should now display ASP.NET 4.0 under tab “ASP.NET” [It was again done if #1 above is right]
- Under Web Services Extensions (in IIS console) .NET 4.0 framework might be set as: prohibited. This must be ALLOWED otherwise a...
Tuesday, May 24, 2011
Bind TreeView in Asp.NET
Using below code you can bind/show treeview in asp.net
for stored procedure: http://dotnetacademy.blogspot.com/2011/05/get-all-child-nodes-of-parent-in-self.html
private void buildTree()
{
List cml;
cml = cmf.GetAll();
TVcategory.Nodes.Clear();
AddNodes(0, TVcategory.Nodes, cml);
}
void AddNodes(int id, TreeNodeCollection tn, List cml)
{
...
Tuesday, May 17, 2011
Test Your webservice/WCF service in Network
Today i found a interesting solution for an interesting problem.
i have created a WCF service in .NET Framework 3.5 to be used by PHP developers.
We have decided to test the service before going forward, for that we have planned to launch it on web servers but, i found there was 2.0 framework installed on my web server and my service is built on framework 3.5 (it was not good time to play with web server). So i decided to expose...
Labels:
ASP.NET,
IIS,
WCF,
Web Service
Monday, May 16, 2011
Setup WCF services on IIS
To setup WCF services on IIS, Please follow below steps:
- If you have not registered script map then register it
- open command prompt with administrative rights.
- move to folder in command prompt: "%windir%\Microsoft.NET\Framework\v3.0\Windows Communication Foundation"
- run : ServiceModelReg.exe -i
- in RUN type "inetmgr" and press enter to open iis manager.
- now go to sites->default web site.
- Right click...
Wednesday, May 11, 2011
Get all child nodes of parent in self join table Tree and vice versa
Lets say we have a table with fileds "category_id, category_name, parentid" now we wants to retrieve all child nodes of specific node then below query will help you.
;WITH Descendants AS (
SELECT p.category_name
, p.category_id
, 0 AS HLevel
FROM dbo.categorymaster p
WHERE category_id = '7'
UNION ALL
SELECT p.category_name
, p.category_id
, H.HLevel+1
FROM...
Labels:
SQL,
SQL Interview Questions
Thursday, May 5, 2011
Write xml text on aspx page
you can use below code to write xml file data (string) on page.
first of all remove all content from aspx page except "page" directive.
XmlDocument doc = new XmlDocument();
doc.LoadXml(stringxml);
Response.Clear(); //optional: if we've sent anything before
Response.ContentType = "text/xml"; //must be 'text/xml'
Response.ContentEncoding = System.Text.Encoding.UTF8; //we'd like UTF-8
doc.Save(Response.Output); //save to the...
Tuesday, May 3, 2011
Send email outside network/organization through MS-Exchange using asp.net
You can use below code to send email using Microsoft Exchange server outside the organization (email address other then current organization)
private void Page_Load(object sender, System.EventArgs e)
{
MailMessage mail = new MailMessage();
mail.To = "me@mycompany.com";
mail.From = "you@yourcompany.com";
mail.Subject = "this is a test email.";
mail.Body = "Some text goes here";
mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate",...
Subscribe to:
Posts (Atom)