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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
J

jokerkachotabhai

@jokerkachotabhai
About
Posts
5
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Changing Text in Passwordmode of Textbox in WebPage
    J jokerkachotabhai

    select the textbox press F4 in the properties widow look out for TEXTMODE it has three options SINGLELINE,MULTILINE,PASsWORD select PASSWORD FROM THE LIST :laugh:

    ASP.NET

  • TextChange Event on a collection of textboxes [modified]
    J jokerkachotabhai

    U must have assigned ID to all of ur textboxes whether u create it dynamically or us it beforehand as a static control so u can create a centralized event handler for all ur textboxes for eg. if i have two textboxes with their ID as say t1 and t2 respectively then i will use this method to act as a centralized event handler for textchange d event of both as void TextBox_TextChanged(object sender,EventArgs e) { TextBox t = (TextBox)sender; switch(t.ID) { case "t1": Response.Write("Text Changed in t1"); break; case "t2": Response.Write("TextChanged in t2"); break; } }

    ASP.NET

  • how to enable AutoGenerateDeleteButton on only specific rows of a gridview depending on the value of data key in C#
    J jokerkachotabhai

    I am not using any static button control I am using AutoGenrateDeleteButton property of Grid view

    ASP.NET question csharp help tutorial

  • Mailbox unavailable exception plz help!!!
    J jokerkachotabhai

    I am getting this error Mailbox unavailable. The server response was: 5.7.1 Unable to relay for niwant_gadgil@yahoo.co.in Following is the code which i have written : //////////////////////////////////////////////////////////////// protected void btnSubmit_Click(object sender, EventArgs e) { if (tbUsrName.Text == "") { Response.Write("<script language='javascript'>alert(\"UserName is Blank...\");</script>"); } else { try { string dbString = ConfigurationManager.ConnectionStrings["AppCon"].ConnectionString; SqlConnection sqlcon = new SqlConnection(dbString); sqlcon.Open(); SqlCommand sc = new SqlCommand("select usr_Email from usr_details where usr_ID = '" + tbUsrName.Text.ToString() + "'", sqlcon); SqlDataReader sqldr = sc.ExecuteReader(); if (sqldr.Read()) { string e_mail = sqldr["usr_Email"].ToString(); MailMessage msg = new MailMessage("noreplyadmin@learners21st.com", e_mail, "Password Recovery", "ur new password is 0a1b2c3d plz change it as soon as u log in"); SmtpClient mySmtp = new SmtpClient("localhost"); mySmtp.Send(msg); lblResult.Visible = true; lblResult.Text = "Submit occured"; } else { lblResult.Text = "No Such User Found........"; lblResult.Visible = true; } } catch (Exception ex) { lblResult.Visible = true; lblResult.Text = ex.Message; } } } NOTE : noreplyadmin@learners21st.com doesn't exist NOTE : I am not using ASPNETDB /////////////////////////////////////////////////////////// In web.config i hve included this section to post the mail <system.net> <mailSettings> <smtp> <network host="localhost" port="25" defaultCredentials="true"/> </smtp> </mailSettings> </system.net> How can i solve this plz help

    ASP.NET sysadmin help csharp javascript com

  • how to enable AutoGenerateDeleteButton on only specific rows of a gridview depending on the value of data key in C#
    J jokerkachotabhai

    I have developed an website for forums i want to that users who has replied to a question are also able to delete their replies how can I achieve that plz help!!!

    ASP.NET question csharp 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