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

Sarani Ravindran

@Sarani Ravindran
About
Posts
38
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Prevent exe from being copied and run on another pc
    S Sarani Ravindran

    Hi, You can have a separate table in your database that stores the processor ids of your machines that are allowed to run the app. Have the app check against with those ids in the database before running. If you want more details,have a look at this article. http://www.codeproject.com/KB/vb/hardware_Security_2.aspx[^] :)good luck.

    Believe!Success is always yours.

    Visual Basic question tutorial

  • XL VBA Question re Text Boxes
    S Sarani Ravindran

    can you give me your requirement with your code

    Believe!Success is always yours.

    Visual Basic question data-structures help

  • XL VBA Question re Text Boxes
    S Sarani Ravindran

    Hi, Based on my understanding you want to pass value from one form and generate textbox dynamically.So you can have a global variable and store value in tat variable from userform1.and in the page load of userform2 generate as number of textboxes dynamically using for loop.Otherwise get input as many times and get in an array.Store the values in the DB by using arr(0),arr(1)... like that. pls free to ask again if i have misunderstood your problem.

    Believe!Success is always yours.

    Visual Basic question data-structures help

  • The state information is invalid for this page and might be corrupted.
    S Sarani Ravindran

    Hi Ajanabi, This is a known problem in ASP.NET. have a look at this following threads to get more ideas http://www.codenewsgroups.net/group/microsoft.public.dotnet.framework.aspnet.webcontrols/topic15519.aspx[^] http://forums.asp.net/p/955145/1173230.aspx[^]

    ASP.NET help csharp javascript asp-net sysadmin

  • store and retrieve images
    S Sarani Ravindran

    Hi, How to store and show images from the access database to datagridview.I am using VB.NET 2005. can anyone suggest solution for this.

    Visual Basic csharp database tutorial

  • dependent 2 select box list - how?
    S Sarani Ravindran

    Put the dropdownlist in updatepanel so that part of the page will be refreshed. God is always with you.

    ASP.NET tutorial help question

  • getting list of users
    S Sarani Ravindran

    Create a mailing list and add emails to that list. message.To = txtEmail.text and the server can take the rest of actions. try this link for more details: http://www.aspheute.com/english/20000918.asp Let me know whether it is working for you. God is always with you.

    ASP.NET sharepoint question

  • getting list of users
    S Sarani Ravindran

    Do you want to send an email to more than one user? God is always with you.

    ASP.NET sharepoint question

  • To clear textboxes in the content page
    S Sarani Ravindran

    Try this and call this function on the server side. < script > function Clear() { obj=document.getElementsByTagName("INPUT"); for(i=0;i< obj.length;i++) { if ((obj[i].type == "text")) { obj[i].value = ""; } } < /script > Let me know whether you got the solution.:) God is always with you.

    ASP.NET csharp

  • Invalid column name
    S Sarani Ravindran

    The Column Name that you are retrieving(in the database) is different from your Column Name in the table. God is always with you.

    ASP.NET help csharp database

  • using calendar for birthdays
    S Sarani Ravindran

    Try this query from your database: SELECT Name from tablename where month(DOB)=month(getDate()) and day(DOB) = day(getdate()) God is always with you.

    ASP.NET database help tutorial

  • Javascript
    S Sarani Ravindran

    Call on onkeypress event in the body tag. < body onkeypress="Checkkeycode();" > function checkkeycode() { if( event.keycode==13 ) { return false; } else { return true; } } //Keycode value for enter key is 13. God is always with you.

    ASP.NET javascript tutorial

  • i want the code to run a procudere when enter key is pressed in asp.net apllication (help plz)
    S Sarani Ravindran

    Try btngetdata.click(); God is always with you.

    ASP.NET csharp asp-net help

  • i want the code to run a procudere when enter key is pressed in asp.net apllication (help plz)
    S Sarani Ravindran

    Call your procedure like this: function getProcedure() { var obj obj=document.getElementById("button2") button2.click(); } "severside_handler" is the codebehind function that hander the button's server click event. God is always with you.

    ASP.NET csharp asp-net help

  • i want the code to run a procudere when enter key is pressed in asp.net apllication (help plz)
    S Sarani Ravindran

    Use Javascript function and call it on the server side. TextBox1.Attributes.Add("onkeypress","CheckKeyCode();") Validate the key as: function CheckKeyCode() { if(event.keyCode == 13) { return true; } else { return false; } } God is always with you.

    ASP.NET csharp asp-net help

  • Javascript
    S Sarani Ravindran

    Use MouseOnClick event to hide the div. Hide the div as below: document.getElementById("div1").style.display="none" God is always with you.

    ASP.NET javascript tutorial

  • insert the selected values from the checkboxlist into database
    S Sarani Ravindran

    You have to get the total number of rows from the table.Use Dataset. For example, For i = 0 To sqlDataset.Tables(0).Rows.Count - 1 //Your Code. Next Then get the checkbox items that are checked. God is always with you.

    ASP.NET question database

  • insert the selected values from the checkboxlist into database
    S Sarani Ravindran

    Try this code.If it doesn't helps you send me your code. Dim str as string For i = 0 To checkboxlist1.Items.Count - 1 If checkboxlist1.Items(i).Selected = True Then str = checkboxlist1.Items(i).Value & "," & str End If Next Then,take the substring of str and pass it to the database. God is always with you.

    ASP.NET question database

  • DropDownList [modified]
    S Sarani Ravindran

    What you need? Something like "Select" as the index in the dropdownlist?. God is always with you.

    ASP.NET tutorial question

  • GridView (A to Z)+Sourabh
    S Sarani Ravindran

    Dim grid As New GridView Dim b1 As New BoundField b1.HeaderText = "SerialNo" b1.DataField = "SerialNo" grid.Columns.Add(b1) grid.Columns.Add(b2) God is always with you.

    ASP.NET graphics design question
  • Login

  • Don't have an account? Register

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