Latest Posts

Feedback Form
















sorry for the in convince....
read more...

contact us

















site is under construction
read more...

How to find space in between word using c# .net

In windows Application we want to check empty space paste the below coding in your .cs page...


for example


Name Field: "  Mano   kumar"

Here 2 spaces . so we want to find put below lines.....




if(TextBox1.Text.Contains(""))
{

     MessageBox.Show("Please Enter Name without Space");
}




read more...

How to uncheck radiobuttonlist in asp.net

 For Example If you Click Button1 RadioButton selected item clear you want  paste below coding in your aspx.cs page.......






           RadioButtonList1.ClearSelection();

read more...

How to clear selected item in radiobuttonlist in asp.net

   

 For Example If you Click Button1 RadioButton selected item clear you want  paste below coding in your aspx.cs page.......


  protected void Button1_Click(object sender, EventArgs e)
    {
          RadioButtonList1.ClearSelection();

   }
read more...