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
R

Rahul Chitte

@Rahul Chitte
About
Posts
16
Topics
12
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • WPF PopUp control
    R Rahul Chitte

    Hi, I have just started learning WPF and exploring more on WPF controls. Can any one help how to display popup? I have used TextBlock under popup control as below :

    But how to trigger this popup? Thanks and regards, Rahul Chitte

    WPF csharp database wpf help tutorial

  • how to handle key events in Pocket Internet
    R Rahul Chitte

    How to handle key events in Pocket Internet Explorer using javascript?

    Mobile javascript tutorial question

  • How to handle events in Pocket Internet Mobile
    R Rahul Chitte

    How to handle key events in Pocket Internet Explorer using javascript?

    JavaScript javascript tutorial question

  • getElementById not working in Windows Mobile 5.0
    R Rahul Chitte

    Hi, I am running web application on Pocket IE(Ver.5.0),application contains some server controls and i have to access those controls using javascript. I used getElementById('controlName') ... so on. but i could not acces those controls.. I searched lot on google but dint got any decent reason why this is happening. Can anyone help in this regards.? Thanks in advanced Rahul C.

    JavaScript javascript sysadmin help question

  • Need help on Windows Mobile 5.0 [modified]
    R Rahul Chitte

    Hi, I am running web application on Pocket IE(Ver.5.0),application contains some server controls and i have to access those controls using javascript. I used getElementById('controlName') ... so on. but i could not acces those controls.. I searched lot on google but dint got any decent reason why this is happening. Can anyone help in this regards.? Thanks in advanced Rahul C. :( -- Modified Monday, October 25, 2010 3:17 AM

    Web Development javascript sysadmin help question

  • How to call webservice from VB6 ?
    R Rahul Chitte

    Hi, Can any one help me out in regards to Calling WebService from VB6 environment ? Thanks in advanced !! :)

    Visual Basic help tutorial question workspace

  • How to Add Handlers for dynamically created web controls in ASP.net?
    R Rahul Chitte

    No i am not assigning any handler in page load, in page load i am just calling the method to create these controls, evrything is in the method itself and that code i have alredy pasted. Thanks for your quick reply on this.

    ASP.NET csharp asp-net help tutorial question

  • How to Add Handlers for dynamically created web controls in ASP.net?
    R Rahul Chitte

    How to Add Handlers for dynamically created web controls in ASP.net ? I have tried below code but..event is not getting fired..Can anyone help it out..? <pre>For iCounterVar As Integer = 0 To sAnswers.Length - 1                                     Dim t As New TextBox                                     tblCell = New TableCell                                     tblRow = New TableRow                                     t.Text = sAnswers(iCounterVar).ToString                                     AddHandler t.TextChanged, AddressOf MyTextChangedEvent                                     tblCell.Controls.Add(t)                                     tblRow.Controls.Add(tblCell)                                     tblQuestion.Controls.Add(tblRow)                               Next Protected Sub MyTextChangedEvent(ByVal sender As Object, ByVal e As System.EventArgs)             lblMessage = New Label             lblMessage.Text = "Cuaght TextChanged :" & DirectCast(sender, TextBox).Text & " In " ' & DirectCast(sender, TextBox).Parent.ID.ToString)             PlaceHolder1.Controls.Add(lblMessage) End Sub</pre>

    ASP.NET csharp asp-net help tutorial question

  • Tab order issue
    R Rahul Chitte

    Hi All, I am having web page containing table element in this table i am having 5-6 rows based on some condition i am hiding and showing some of the rows using javascript,this functionality is working fine but the Tab order of controls get diturbed when some rows gets hide, Tab order is working fine when all rows are visible. Can any one look into this issue? :)

    ASP.NET javascript help question

  • Problem with crystal reports
    R Rahul Chitte

    Use the stringbulder to build the string and put debug point to test wheather ur string is formed is the correct one. for e.g Dim sbScript as new System.Text.Stringbuilder sbScript.append("Select eName,eSalary from Emp ") sbScript.append("where eid=")   //Use the single quote after = sign if eid is string sbScript.append(TextBox1.Text) cmd.CommandText = sbScript.ToString() Hope this trick will be helpful to you...

    ASP.NET database sql-server design sysadmin security

  • Problem in ValidationCalloutExtender of AJAX
    R Rahul Chitte

    I m facing 'originalWidth' is null or not an object javascript error on my aspx web page, i m hiding and showing panel based on checkbox, the panel contains some of the ajax validationCalloutExtender controls , when i m clicking on submit button i m getting the error as - 'originalWidth' is null or not an object" Can someone help regarding this issue. Thanks in advanced Rahul

    ASP.NET help javascript

  • Problem calling javascript function from codebehind( asp.net..)
    R Rahul Chitte

    Yes i do have ScriptManager on my page

    ASP.NET help csharp javascript asp-net

  • Problem calling javascript function from codebehind( asp.net..)
    R Rahul Chitte

    You are perfectly right but i have to explicitly call that function from one of my checkbox event based on some condition. The scenario is as below : I am assigning text of dropdown1 to another dropdown2 , i have written javascript function for its   onchange event and based on dropdown2 text i am hiding section below dropdown2 using javascript, the thing is that when i m changing value from dropdown2 then it is working fine but when i m trying to assign value of dropdown1 to dropdown2 using .Text property the section below is not getting hide because onchange event is not getting fired.

    ASP.NET help csharp javascript asp-net

  • Problem calling javascript function from codebehind( asp.net..)
    R Rahul Chitte

    I m not able to call javascript function ValidateYear with year as parameter, can some1 help reg this issue, i hv written following code in aspx code behind.. Dim sbScript As New System.Text.StringBuilder             sbScript.Append("ValidateYear(")             sbScript.Append(cboYearAtCurrentAddressCoApplicantContact.Text)             sbScript.Append(");")             'Page.ClientScript.RegisterClientScriptBlock(Me.GetType, "key",sbScript.ToString, False)             ClientScript.RegisterClientScriptBlock(Page.GetType, "key", sbScript.ToString, False) Neither exception is thrown nor calling javascript.Plz Help

    ASP.NET help csharp javascript asp-net

  • Problem showing OnMouseOver PopUp at right mouse position.
    R Rahul Chitte

    Hi, I need help regarding displaying small popup message when user mouse over the pointer the hyperlink, I have created this with javascript and it is showing the required popup onmouseover and onMouseOut it is hiding the popup using kill() method given below in code snippest but problem is whenever u scroll the page the popup msg will get displayed at the top and not on the hyperlink(onMouseOver).. If anyone is having any idea of setting the mouse pointer to desired location or any alternate solution to show onHover popup using javascript. Plz see code below:       //Hover Text for SSN Xoffset= 20 //-10; //-60;      // modify these values to ... Yoffset= -25 //-150; //20;      // change the popup position.          var old,skn,iex=(document.all),yyy=-1000; var ns4=document.layers var ns6=document.getElementById&&!document.all var ie4=document.all if (ns4) skn=document.dek else if (ns6) skn=document.getElementById("dek").style else if (ie4) skn=document.all.dek.style if(ns4)document.captureEvents(Event.MOUSEMOVE); else {       skn.visibility="visible"       skn.display="none" } document.onmousemove=get_mouse; function popup(msg,bak) {       var content="<TABLE   WIDTH=250 BORDER=1 BORDERCOLOR=#01244E CELLPADDING=2 CELLSPACING=0 "+       "BGCOLOR="+bak+"><TD ALIGN=left style='padding-left:5px;font-size:8pt;font-family:Arial;color:#01244E'>"+msg+"</TD></TABLE>";       yyy=Yoffset;       if(ns4){skn.document.write(content);skn.document.close();skn.visibility="visible"}       if(ns6){document.getElementById("dek").innerHTML=content;skn.display=''}       if(ie4){document.all("dek").innerHTML=content;skn.display=''} } function get_mouse(e) {       var x=(ns4||ns6)?e.pageX:event.x+document.body.scrollLeft;       skn.left=x+Xoffset;       var y=(ns4||ns6)?e.pageY:event.y+document.body.scrollTop;       skn.top=y+yyy;       } function kill() {       yyy=-1000;       if(ns4){skn.visibility="hidden";}       else if (ns6||ie4)       skn.display="none" }

    ASP.NET help javascript question

  • Getting the editable textbox value from Gridview control
    R Rahul Chitte

    Can someone help me to figure out how to get the editable textbox value from the GridView in my code-behind ? I am using the code something like- GridView2.Rows[e.RowIndex].Cells[4].Text.Trim() But when I click the update link button , I don't get the value. Is there another way of doing this ? I want to Read the GridView cell from my code-behind and pass that to a update method that I have written in the .cs file. Thanks in advanced !! :)

    IT & Infrastructure help tutorial question announcement
  • Login

  • Don't have an account? Register

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