Welcome, Guest Ohm namah shivoy
www.faqpanel.com
Home | ASP.Net | C-Sharp | Winforms | MS SQL | AJAX | XML | .Net Training*** | Search
Invite friends 
Extras 
VS Tips & Tricks
Top 10 .Net Tools
Special folders in ASP.Net
VS Find Combobox
 ASP.Net Interview Questions and Answers
How to truncate the data in the column?
protected string TruncateData( string strNotes )
{
if (strNotes.Length > 20)
{
return strNotes.Substring(0,20) + "...";
}
else
{
return strNotes;
}
}
What is "Literal" control in ASP.Net?
What is the maxlength limit in characters of the textbox in .Net?
How to find out IP Address of the host in ASP.Net?
What are the security measures exist for ASP.Net Remoting in System.Runtime.Remoting?
How to create an array of Web Server Controls?
What is the difference between ExecuteQuery() and ExecuteNonQuery()?
How to apply themes in ASP.Net?
How to convert TextBox value into a DateTime variable?
What debugging tools come with the .Net SDK?
Which namespace do you include while using ODBC connectivity?