Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by saminetemad

  1. saminetemad

    problem with AJaX NumericUpDownExtender

    Hi, If delete attribute "read only" in text box ,Code will work correctly.
  2. saminetemad

    problem with AJaX NumericUpDownExtender

    Hello, I have a AJAX NumericUpDownExtender and Text box dependent on this . I want when I clicked on the button text of Textbox dependent on the NumericUpDownExtender transfer to another textbox . Iwrite this code: </cc1:NumericUpDownExtender> <cc1:NumericUpDownExtender...
  3. saminetemad

    which RefValues is selected in NumericUpDownExtender

    Hello, How can placed the value, that user has selected by NumericUpDownExtender into a text box when click on the button. Thanks in Advance!
  4. saminetemad

    How to write schedule calendar?

    I want to write schedule calendar with C#.net. How can some days have been recorded in the database, show with different background on the calendar? Thanks in advance!
  5. saminetemad

    Prevent sql injection

    Hello, I have a sql string. protected void Button1_Click(object sender, EventArgs e) { string strconnection; strconnection = ConfigurationSettings.AppSettings["connectionstring"]; SqlConnection DBConnection = new SqlConnection(strconnection)...
  6. saminetemad

    problem in send information to sql database

    Hello I wantto tell you my problem as a example: I have two textboxes and one button in the page. When I click on the button, MoneyManagement table in sql database is updated by text of textboxes .Type of this field are nvarchar I wrote the following code : protected void...
  7. saminetemad

    problem in menu and modal window jquery

    Hello, I am a novice in jquery. I've found the code that it opens a window by clicking on a link . To do this I wrote the following code: <head runat="server"> <title>Untitled Page</title> <style> .jqmWindow { display: none; position: fixed; top: 17%; left: 50%...
  8. saminetemad

    Get the selected item in RadioButtonList that is in tab container?

    By changing codes as following ,the problem is solved: function MenuItemSelected() { var radioButtons = document.getElementsByName('<%=RadioButtonList1.UniqueID %>'); if(radioButtons[2].checked) { window.alert("jjjjjjj"); } else { window.alert("tttttttttttttttttt"); } }
  9. saminetemad

    Get the selected item in RadioButtonList that is in tab container?

    Hi, I have a radiobuttonlist and menu in the page and they in AJAX tab container . I want when I click on the menu according to the Radio Button selected, a different display. I wrote the following code: function MenuItemSelected() { var radioButtons =...

Part and Inventory Search

Back
Top