User Profile

Collapse

Profile Sidebar

Collapse
Ramchandar
Ramchandar
Last Activity: May 22 '09, 05:25 AM
Joined: Dec 27 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Ramchandar
    started a topic Session Variables getting cleared
    in .NET

    Session Variables getting cleared

    Hi,

    I have an ASP.Net web application hosted in my local server with IIS 5.0 as web server. This worked fine with no issues. So I tried hosting the same into the server machine where I have IIS 6.0 as web server. I am having an issue : Onclick of the submit button the session variables are getting cleared. I don’t know why it is happening. I am not able to find why and where the session variables are getting cleared.
    ...
    See more | Go to post

  • Ramchandar
    started a topic Issue in deploying web application in IIS.
    in .NET

    Issue in deploying web application in IIS.

    Hi,
    I have a web application created in 2.0 Framework. I deployed this application in the virtual directory of the IIS by right clicking the project and selecting the Publish this web site option in Visual Studio. Publishing was successful but wen i try to open the default.aspx in IE by giving http:\\localhos t\Test\Default. aspx in the address bar it just shows the html markups of the default.aspx (the @page directives, entire html contents...
    See more | Go to post

  • Ramchandar
    replied to Conflicts with Access97 and Access2003
    No this url tells in general about the usage of join in Access.

    I think you didnt got wat i am expecting for.
    Any one please help.. i am badly in need of the solution for this.

    Thanking in advance,

    With regards,
    ram
    See more | Go to post

    Leave a comment:


  • Ramchandar
    started a topic Conflicts with Access97 and Access2003

    Conflicts with Access97 and Access2003

    Hi,
    I am creating reports using VBA code.
    I have the same query in a querydef residing both in Access97 and Access2003. The result of this querydef is then moved to a table in Access97 and Access2003 respectively. The table in Access97 returns 874 rowcount, table in Access 2003 returns 1050 rowcount. In both the case the querydef is retrieving from the same database which resides in SQL Server 2003.

    I executed the application...
    See more | Go to post

  • How to dynamically generate the fields in excel report using VB 6.0

    I would like to create a dynamic report in excel using VB6.0.

    I am having many recordset and i would be using these separate recordset to prepare report in excel. I have a separate format also for this. Say for example each cell value in excel would be from a separate recordset. The data for this recordset would be from SQL.

    Can u please suggest me some freeware or some source code to achieve this task.
    See more | Go to post

  • Ramchandar
    replied to TextBoxEvents
    in .NET
    You can also use client side javascript for achieving keypress events

    With regards,
    ram...
    See more | Go to post

    Leave a comment:


  • Ramchandar
    replied to Redirecting
    in .NET
    Hi,
    May be u can try getting the application vitual path.
    Response.Redire ct(Request.Appl icationPath + "/main.aspx");

    This Request.Applica tionPath will get you the virtual path of ur application.

    Hope this was usefull..

    With regards,
    ram...
    See more | Go to post

    Leave a comment:


  • [CODE=javascript]
    function IsNumeric(strSt ring)
    // check for valid numeric strings
    {
    var strValidChars = "0123456789 .-";
    var strChar;
    var blnResult = true;

    if (strString.leng th == 0) return false;

    // test strString consists of valid characters listed above
    for (i = 0; i < strString.lengt h && blnResult == true; i++)
    ...
    See more | Go to post
    Last edited by Frinavale; Jan 3 '08, 02:07 PM. Reason: Fixed Code Tag

    Leave a comment:


  • Hi,
    Two approaches.
    1. Check the text entered in the textbox is numeric or not using the onblur event of the textbox. This would be something like this.
    <asp:GridView ID="GridView1" runat="server">
    .
    .
    <asp:TextBox ID="txtNo" runat="server" onblur="javascr ipt:IsNumeric(t his.value);"></asp:TextBox>
    .
    .
    </asp:GridView>...
    See more | Go to post

    Leave a comment:


  • Ramchandar
    started a topic Keep Session Alive
    in .NET

    Keep Session Alive

    In my aspx page i want the lot of informations to be filled by the user. But wen the user takes some break to fill the form n resumes after some time the page gets expired. So to keep the session alive i used the following javascript code but it didnt work.

    Code:
    function KeepMeAlive()
        {
            var myImg;
            myImg =document.getElementById('keepAliveIMG');         
            if (myImg)
    ...
    See more | Go to post

  • Ramchandar
    replied to Javascript for onfocus
    in .NET
    Hi,
    On body load call a javascript function to set the focus to the textbox u desire.
    <body onload="javascr ipt:setfocus(); ">

    Or simply set the focus to the textbox like this

    <body onload="documen t.getElementByI d('txtUser').fo cus();">
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...