User Profile

Collapse

Profile Sidebar

Collapse
Renilkumar
Renilkumar
Last Activity: Mar 27 '08, 07:40 PM
Joined: Mar 19 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Renilkumar
    replied to Get values from the listbox using vb.net
    in .NET
    It helped me..Thanks a lot.
    See more | Go to post

    Leave a comment:


  • Renilkumar
    started a topic Get values from the listbox using vb.net
    in .NET

    Get values from the listbox using vb.net

    Hi,
    I am using .net 2.0. I have a .aspx page with vb.net as codebehind.

    My form has one dropdown, 2 listboxes with add & remove button. During pageload I am loading all the values from the db to dropdown and after pageload, If I select value from the dropdown will load the data into the first listbox.
    I can select 1 or multiple values in the listbox and click on Add button will copy the data from source listbox to...
    See more | Go to post

  • Renilkumar
    started a topic How to maintain/preserve values in the listbox ?
    in .NET

    How to maintain/preserve values in the listbox ?

    Hi,
    I am using .Net framework2.0. I have an aspx with vb.net as codebehind

    step1:When page loads I am loading the dropdown from the db.
    step2: After page load, I can enter any value in the text box and click on add button will load the value in the list box.
    step3: If I change the value in the dropdown (I have written some code to load the value into another listbox based on the dropdown selected) the listbox...
    See more | Go to post

  • Able to connect to oracle even with the old expired password

    Hi,

    I am using .net2.0,oracle9 i with odp.net9. When a password is expired, I am forcing the user to enter the new password and once it sets I am redirecting the user to the login page to login with their new password. But If I use the old password it shouldn't allow me to login right. Instead its allowing me to login with my old password. Even with the new password its logging me in.
    Only after sometime the oldpassword really...
    See more | Go to post

  • Renilkumar
    replied to Changing the password when it expires.
    in .NET
    Hi,

    Since I am using ODP driver, I used connection.Open WithNewPassword ("new password") to reset my password. Here is the sample C# code..

    try {

    cn.Open();

    return cn; }

    catch {

    cn.OpenWithNewP assword(newpwd) ;

    return cn; }
    See more | Go to post

    Leave a comment:


  • Renilkumar
    started a topic Changing the password when it expires.
    in .NET

    Changing the password when it expires.

    Hi,
    We have developed a .net2.0 application using asp.net, vb.net and oracle9i. From the appl. we pass the datasource=;use rid=;password=; to validate the username and password against the user_users table in oracle.
    When the password is expired, We are forcing the user to change the password through a screen which uses...
    ALTER USER <user> IDENTIFIED BY <newpassword> REPLACE <oldpassword>
    But the moment...
    See more | Go to post

  • I have an old production application that built on asp.net/VS 2003 using .net1.1. However my system has VS 2005 installed and If I try to open the old application in VS 2005 its asking me to migrate before even using.

    My manager doesn't want to migrate. So they installed VS 2003 on my pc. But now If I try to open the old application using VS 2003 its saying the error message(mention ed earlier). Also I tried creating a new application...
    See more | Go to post

    Leave a comment:


  • I have both .net 2.0 and .net1.1
    I ran aspnet_regiis -i in the .net1.1 directory to make it current.

    Thanks.
    See more | Go to post

    Leave a comment:


  • Yes, I have an old asp.net application(bui lt in VS 2003) in the server that has IIS. Even If I try to open the application its saying the same error message.

    But If I try to open the same old application using VS 2005 it works fine.

    Thanks.
    See more | Go to post

    Leave a comment:


  • Hi,

    Thanks for your prompt reply.
    Yes, I have IIS running on my machine but due to company policy I cannot access its properties.
    what do I do now ?

    Thanks,
    Renil.
    See more | Go to post

    Leave a comment:


  • Visual studio .net cannot create or open the application error.

    Hi,
    I have already have VS 2005 and yesterday I have installed VS 2003 Enterprise Developer. The installation were successfull. But when I open VS 2003 and try to create a new asp.net application its saying "Visual studio .net cannot create or open the application. Web site 'http://localhost/webapplication1 ' not started on this web server" error.

    Any idea what would be the problem ?

    Thanks,
    R...
    See more | Go to post

  • Renilkumar
    replied to CommandArgument returns empty string.
    in .NET
    No its not NULL....
    See more | Go to post

    Leave a comment:


  • Renilkumar
    started a topic CommandArgument returns empty string.
    in .NET

    CommandArgument returns empty string.

    I have a datagrid using link button. I am setting the CommandArgument value as ..

    Code:
    <asp:linkbutton runat="server" 
            EnableViewState=True 
            CommandArgument='<%# DataBinder.Eval(Container.DataItem, "EmpId")%>'
    ....>
    In the .aspx.vb file I am referring this value as..
    Code:
    Private Sub results_ItemCommand(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataGridCommandEventArgs)
    ...
    See more | Go to post
    Last edited by Frinavale; Apr 27 '10, 07:53 PM. Reason: Please post code in [code] ... [/code] tags. Added code tags.

  • Renilkumar
    started a topic Name 'IsNothing' is not declared
    in .NET

    Name 'IsNothing' is not declared

    Hello,

    I have successfully migrated asp.net application built in VS2003/1.1 to VS2005/2.0 in my local machine. It runs good without any errors.
    However If I copy the application into the shared drive and try to run, its giving lot of errors..Some errors are..
    Name 'DBNull' is not declared
    Name 'IsNothing' is not declared
    But the same code works in the local system. Any idea why its behaving like this ?...
    See more | Go to post

  • Failed to grant minimum permission requests. (Exception from HRESULT: 0x80131417)

    Hello,

    I have migrated a VS2003 appl. to VS2005 appl. After migration it automatically created a bin directory under the root and placed all the DLLs there. However I am getting an error message for saying....

    Could not load file or assembly '<Dll File>', Version=1.0.187 1.31400, Culture=neutral , PublicKeyToken= null' or one of its dependencies. Failed to grant minimum permission requests. (Exception from HRESULT:...
    See more | Go to post

  • Renilkumar
    started a topic Migration VS2003 (1.x) to VS2005 (2.0)
    in .NET

    Migration VS2003 (1.x) to VS2005 (2.0)

    Hello,

    I have migrated a VS2003 appl. to VS2005 appl. After migration it automatically created a bin directory under the root and placed all the DLLs there. However I am getting an error message saying 'Type ..... is not defined' in (.vb) file
    I think its not recognizing the DLL. Any idea how to resolve this issue ?

    Thanks,
    Renil.
    See more | Go to post

  • Renilkumar
    replied to Running aspnet_regiis -i in ver1.1 folder.
    in .NET
    Frinny,

    If I migrate its giving lot of issues like.."Cannot create type..." Moreover we will be using this application just for couple of months..so we don't want to migrate really. So kindly suggest what do I do in order to avoid this situation ?
    Do I need to install VS2003 ? or ......
    See more | Go to post

    Leave a comment:


  • Renilkumar
    started a topic Running aspnet_regiis -i in ver1.1 folder.
    in .NET

    Running aspnet_regiis -i in ver1.1 folder.

    Hello,

    My application sitting on the shared drive uses framework 1.1 and my local system has both 1.1 & 2.0. With this If I open the application its saying "Your code is written on the older version and you should convert to the new version before editing"..I don't want to migrate to the newer version.
    So what I did is, ran the aspnet_regiis -i in my local system under ver1.1 folder. But even after running this...
    See more | Go to post

  • Renilkumar
    started a topic Microsoft framework 1.1 and 2.0
    in .NET

    Microsoft framework 1.1 and 2.0

    Hello,
    I have Microsoft framework 1.1 and 2.0 installed in my machine. Currently its uses framework 2.0. How do I change the version to 1.1 ?

    Regards,
    Renil.
    See more | Go to post

  • Renilkumar
    started a topic Change Version in the local system.
    in .NET

    Change Version in the local system.

    Hello,
    Any idea how to change asp.net framework version from 2.0 to 1.1 in my local system. I don't have IIS.

    Regards,
    Renil.
    See more | Go to post
No activity results to display
Show More
Working...