Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

Shanmugam R

@Shanmugam R
About
Posts
4
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Validations
    S Shanmugam R

    Just include the following code on server side (Form Load event). drpList.Attributes.Add("onchange", "JavaScriptFunctionName();"); or drpList.Attributes.Add("onclick", "JavaScriptFunctionName();"); We can add properties using the Attributes method.

    Shanmugam R

    ASP.NET tutorial question

  • Validations
    S Shanmugam R

    You can achive through Dropdown on click Javascript event. Based on the selected value function EnableValidator() { if(document.getElementById('<%=ddlCmethod.ClientID%>').value=='Telephone') { ValidatorEnable(document.getElementById('<%=valmanEmail.ClientID%>'), false); ValidatorEnable(document.getElementById('<%=valmanPhone.ClientID%>'), true); } else { ValidatorEnable(document.getElementById('<%=valmanEmail.ClientID%>'), true); ValidatorEnable(document.getElementById('<%=valmanPhone.ClientID%>'), false); } } Just call 'EnableValidator()' function on click of the dropdownlist This will work.

    Shanmugam R

    ASP.NET tutorial question

  • Wrap text in Gridview [modified]
    S Shanmugam R

    If you are using TD then the code will be written like this, '<%#Eval()%>'

    Shanmugam R

    ASP.NET css help tutorial

  • Using Javascript to fire an event in another class....?
    S Shanmugam R

    b>You can raise server side event when the mouse over the imagebutton. function Show() { document.getElementById('<%=ImageButton1.ClientID%>').click(); } ServerSide code protected void Page_Load(object sender, EventArgs e) { ImageButton1.Attributes.Add("onmouseover", "Show();"); } protected void ImageButton1_Click(object sender, ImageClickEventArgs e) { // Write your event handler... }

    Shanmugam R

    C# csharp javascript asp-net help tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups