Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: meenakshidhar
  • Content: Threads
  • Order by date
  1. meenakshidhar

    ASP.Net with Oracle

    I m not able to connect ASP.Net with Oracle. The code is given below- ========================================================= Dim oOracleConn As OleDbConnection = New OleDbConnection() oOracleConn.ConnectionString = "Provider=OraOLEDB.Oracle;Data Source=INDV;User ID=scott;Password=tiger"...
  2. meenakshidhar

    Oracle connectivity with ASP.Net

    Hi All, I want to connect ASP.Net with Oracle 8...i have installed Microsoft .Net Oracle Cleint.. i got this code from the Net =========================================================== Imports System.Data.OracleClient Dim oOracleConn As OracleConnection = New OracleConnection()...
  3. meenakshidhar

    Calling Oracle Procedure from ASP

    Hi All, I want to call oracle procedure from my ASP page in which i m passing the value of empno and want to display empname,job etc..from the table...my code is given below... ========================================================= Dim strSearchName Dim objConnection Dim objCommand Dim...
  4. meenakshidhar

    How to use 2 different stored procedures in Data Reapeater

    Hi All, I have one Reapeter in my page. I have to use two seperate stored procedures in order to fetch the data from database and then bind it to the data repeater. My code is given below-- <asp:Repeater id="Repeater1" runat="server"> <HeaderTemplate> <table border="1"> <tr...
  5. meenakshidhar

    How to add Custom Controls

    Hi Friends, Can anyone tell me how to add custom controls in asp.net application. I add the reference of that control (.dll) in my asp.net application but getting this error-- Could not load type <<Namespace.Class>> from assembly <name>, Version=1.0.1866.27417, Culture=neutral...
  6. meenakshidhar

    problem in retrieving records in dropdownlist box

    hi, My Code is given below... HTML Code-- ________________________________________________________ <asp:DropDownList id="cmbCountry" runat="server"> <asp:ListItem Value="Denmark">Denmark</asp:ListItem>...
  7. meenakshidhar

    confirmation message before deleting in datagrid

    Hi, I want to display the confirmation message before deleting any record from datagrid... HTML Code-- __________________________________________________________ <ASP:DATAGRID id="DataGrid1" runat="server" CellPadding="3" BorderWidth="1px" AutoGenerateColumns="False"...
  8. meenakshidhar

    self.location not wrking in IE 5

    Hi Friends... the following Javascript code is not wrking in IE5...it's wrking in IE6.. *********************************************************** function del(cust_id,username) { var agree=confirm("Are you sure you want to delete this customer?"); if (agree)...
  9. meenakshidhar

    print double quotes in a text file

    hi.. can anybody tell me how to print "double quotes" in a text file... e.g. myvar=1234 in file it should print "1234" Regards Meenakshi Dhar
  10. meenakshidhar

    connecting ASP with MySQL

    hi all, i m getting this error while connecting ASp with Mysql --------------- Microsoft OLE DB Provider for ODBC Drivers error '80004005' [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified --------------- my connection string is <% Set pConn =...
  11. meenakshidhar

    disable forward button once come to home page

    Hi friends... I my application, i used session variables to check the authenticity of the user on every page...user logs in and browse the various pages of his work area...if user returned to the login page without clicking "logout" i.e. by clicking browser's back button, then he should not be...
  12. meenakshidhar

    LDAP using ASP

    hi freinds... i m new to LDAP..i am using IIS on Windows 2003 Server...i want to connect ASP with LDAP (which is on my Unix machine)...can anybody plss tell me how to start using ASP with LDAP...i want to add, modify, delete, search data in LDAP using ASP... what all things should i need to...
  13. meenakshidhar

    arrays in asp

    Hi friends, My code is given below- one.asp-- <form action="two.asp" method="post"> <% Dim rs_country set rs_country=Server.CreateObject("ADODB.recordset") set rs_country=conn.execute("select * from country") Do While Not rs_country.EOF %> <input name="price()" type="text" maxlength="20"...
  14. meenakshidhar

    pie charts in asp

    i have some values and on the basis of those values, i want to create 3D pie graph...can anybody plss give me any script...this is very urgent... Regards Meenakshi Dhar
  15. meenakshidhar

    redefined the names

    my code is given below..i have two recordsets named "rs" both.. the error which i m getting is --------------------------------------------- Microsoft VBScript compilation error '800a0411' Name redefined /test/db.asp, line 36 dim rs ----^ --------------------------------------------- so...
  16. meenakshidhar

    printer friendly page...

    Hi friends.. i want to display a printer friendly page of my webpage... when i take printout of the mypage 1. On top right side- it's showing "Page1 of 1" 2. On top leftside it's showing "the title of my webpage" 3. At the left side of the bottom it's showing "the url of the webpage" i...
  17. meenakshidhar

    encrypted password

    hi friends... i want to store my password in encrypted form in SQL server database.. Regards Meenakshi Dhar
  18. meenakshidhar

    connecting php and mssql using ADODB

    I have Freetds installed on my linux box and php 4.4.3-6 My code is given below... <? include('adodb/adodb.inc.php'); $db = ADONewConnection('odbc_mssql'); $dsn = &quot;Driver={SQL Server};Server=serverip;Database=dbname;&quot;; $db->Connect($dsn,'username','password'); $rs =...
  19. meenakshidhar

    problem in connecting php with mssql

    I m using PHP with MSSQL...i have installed FREETDS in my linux box...MSSQL 2000 is on WIN2000 machine..on my linux box i m already using PHP and MYSQL...which is working fine...but i m not abble to connect to MSSQL using PHP... my code is as follows.. <...
  20. meenakshidhar

    PHP and MS SQL Connectivity

    Hi All, Can anybody plss tell me how to connect PHP and MS SQL Server database...i have WIN98 machine with apache 1.3.2.9 and php 4.3.4 installed... 1. Enable mssql extensions in php.ini 2. Add php_mssql.dll to php.exe working directory My code is <...

Part and Inventory Search

Back
Top