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

sivaprakas

@sivaprakas
About
Posts
17
Topics
8
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • javascipt document.getElementByID() problem using MasterPage
    S sivaprakas

    Hi thanks for all reply i use "ctl00$ContentPlaceHolder1$editName" as ID and comeout from the pbm

    ASP.NET javascript tools help tutorial

  • javascipt document.getElementByID() problem using MasterPage
    S sivaprakas

    hai i new to using masterpage when i use this code any of page in my website javascript code appears how to overcome this problem very urgent <script language=javascript>function test() { alert(document.getElementById("editName").value)); } </script> but without using masterpage this code working perfectly

    ASP.NET javascript tools help tutorial

  • Sql Record Select
    S sivaprakas

    hi anyone give query to select first 4 records , select last 4 records , select next 4 records and select previous 4 records in MSSqlServer

    Database database

  • :^) Crystal Report [modified]
    S sivaprakas

    :^) Hi i use crystal repprts to create report, can i insert tables in the crystal report can i display the data with multiline pls help me i want to display 4 records per page how to display 4 records i want to display the records in the following format Rec1 Rec2 Rec3 Rec4 i try this format but in the record2 place display the Record1 again pls help me to this format in CrytalReports very Urgent

    modified on Tuesday, February 05, 2008 2:56:39 AM

    ASP.NET help tutorial

  • Read DropDownList Items
    S sivaprakas

    Yes

    ASP.NET javascript html help tutorial

  • Read DropDownList Items
    S sivaprakas

    I use Html Button and Javascript code to Add items to Asp:DropDownList Control and use Asp:Button Click event to read Asp:DropDownList added items but when i click Asp:Button the Asp:DropDownList Added Items are disappeared how to read the dropdwon list items pls help me

    ASP.NET javascript html help tutorial

  • Login Control
    S sivaprakas

    just write this code on button click(at Code Window) if(username.Text!="" && passsword.Text!="") { here login process } else { string focusScript = "<script language='javascript'>alert('UserName or Password incorrect ");</script>"; Page.RegisterStartupScript("FocusScript", focusScript); }

    ASP.NET javascript

  • i need coding for asp.net
    S sivaprakas

    SqlConnection con; SqlCommand cmd; SqlDataReader dr; string pvtConnStr; string trck = ""; pvtConnStr = here give ur connection String; con = new SqlConnection(pvtConnStr); try { con.Open(); cmd = new SqlCommand("select username,password from user_table", con); dr = cmd.ExecuteReader(); if (dr.HasRows) { while (dr.Read()) { if (UserName.Text == dr[0].ToString() && PassWord.Text == dr[1].ToString()) { Response.Redirect("Default.aspx"); } } Label2.Visible = true; Label2.Text = "InValid User Access"; } //Response.Redirect("Default2.aspx"); con.Close(); } catch (Exception ex) { Label2.Visible = true; Label2.Text = "Problem connect to Database"; } it works perfectly

    ASP.NET csharp asp-net database

  • Can you help me in asp.net? Thank you
    S sivaprakas

    do the follwing steps step1: step2: function change_focus(e) { var keycode; if (window.event) keycode = window.event.keyCode; else if (event) keycode = event.keyCode; else if (e) keycode = e.which; else return true; if( keycode == 13 ) { document.form1.TextBox2.focus(); } } this steps solve ur problem

    ASP.NET csharp asp-net help tutorial question

  • Retrive Asp:DropDownList Addes Items [modified]
    S sivaprakas

    Hi, I develop a project in ASp.net in my project i use java script function to add textbox value to Dropdownlist when i click ASp.Butoon the Dropdownlist values age disappeared i can't get dropdownlist values how can i get pls help me sn-asp:TextBox list-asp:DropDownList function Button8_onclick() { var t alert("Hai"); //alert(document.form1.elements["dl"].value); //alert(document.getElementById("sn2").value);if(document.getElementById("sn").value!="") { if(document.getElementById("list").value=="1") { t = document.getElementById("sn").value st = new Option(t,t)document.getElementById("snum1").add(st); } if(document.getElementById("list").value=="2") { t = document.getElementById("sn").value st = new Option(t,t) document.getElementById("snum2").add(st); } if(document.getElementById("list").value=="3") { t = document.getElementById("sn").value st = new Option(t,t) document.getElementById("snum3").add(st); } if(document.getElementById("list").value=="4") { t = document.getElementById("sn").value st = new Option(t,t) document.getElementById("snum4").add(st); } if(document.getElementById("list").value=="5") { t = document.getElementById("sn").value st = new Option(t,t) document.getElementById("snum5").add(st); } if(document.getElementById("list").value=="6") { t = document.getElementById("sn").value st = new Option(t,t) document.getElementById("snum6").add(st); } if(document.getElementById("list").value=="7") { t = document.getElementById("sn").value st = new Option(t,t) document.getElementById("snum7").add(st); } if(document.getElementById("list").value=="8") { t = document.getElementById("sn").value st = new Option(t,t) document.getElementById("snum8").add(st); } if(document.getElementById("list").value=="9") { t = document.getElementById("sn").value st = new Option(t,t) document.getElementById("snum9").add(st); } if(document.getElementById("list").value=="10") { t = document.getElementById("sn").value st = new Option(t,t) document.getElementById("snum10").add(st); } } code Window protected void Button10_Click(object sender, EventArgs e) { for (int j = 0; j < snum10.Items.Count; j++) { //tListt.Items.Add(snListt.Items[j].ToString()); snd[10] = snd[10] + "/" + snum10.Items[j].ToString(); } } snd[] string Array snum1 DropDownlist

    mo

    ASP.NET csharp java asp-net data-structures tools

  • Problem with form data after submitting
    S sivaprakas

    giva some code example

    Web Development help csharp javascript asp-net

  • Crysaltal Report
    S sivaprakas

    I made a simple report CrystalReport1.rpt which was added to my project Now I want to use this report in my project: CrystalReport1 = new CrystalReport1(); But I get this compile-error: The type or namespace name 'CrystalReport1' could not be found (are you missing a using directive or an assembly reference?) What is wrong?

    ASP.NET question help

  • Session Variable Problem
    S sivaprakas

    sir i changed my system firewall settings now i can acccess website installed on my system from any where on my LAN except from LOcal Server why this happen have to change any firewall settings on local server help me

    ASP.NET help csharp asp-net sysadmin tutorial

  • Session Variable Problem
    S sivaprakas

    i did't close the browser window i work on the same browser without logout but the session variable can't be accesssble why this happen pls help me

    ASP.NET help csharp asp-net sysadmin tutorial

  • Session Variable Problem
    S sivaprakas

    In my ASp.net Website Application there is no Global.aspx file pls help me how to set global.aspx file r how to keep session i have give value to session variable in login page

    ASP.NET help csharp asp-net sysadmin tutorial

  • Session Varialble Problem
    S sivaprakas

    Hi i have developed an Asp.Net Website i use Session Variable to track the user it work properly in my local system i have installed my website on local server and test it but the session not work properly in the local server when i access it from my machine the session varialble losss its datas how to prevent it please help me

    Web Development help csharp asp-net sysadmin tutorial

  • Session Variable Problem
    S sivaprakas

    Hi i have developed an Asp.Net Website i use Session Variable to track the user it work properly in my local system i have installed my website on local server and test it but the session not work properly in the local server when i access it from my machine the session varialble losss its datas how to prevent it please help me :doh:

    ASP.NET help csharp asp-net sysadmin 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