AspdotnetCodes.com
Voted 'Best ASP.NET Host' for 2008 – DiscountASP.NET
 
Articles Subscribe for our Articles Updates
Books
Resources
Downloads
Free Tech Magazines
Archives
Softwares
Newsletter
Suggest Us
Link to Us
 how to pass an argument
Posted by Shanthini on  6/13/2008 4:30:52 AM Category: Asp.Net 2.0
Add to my favorites
Email to friend
  
Hi..

How to pass an argument which is from Stored procedure..
But the argument is not a string.. the data in xml format..

Can anyone help me..?

Post Answer Post New Question

 Viewer's Answers
passing argument as follows
Posted By bhagavan on 6/13/2008 3:23:22 PM
Description:
using constructors to pass the arguments
like
public class()//this is a default parameter
{
console.WriteLine("Zero parameter");
}
public class(int a)
{
console.WriteLine("one parameter");
}
public class(int a,int b)
{
console.WriteLine("two parameter");
}
 
Sponsored by