- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Programmer
17 Posted Topics
I am getting error SEVERE: java.lang.UnsatisfiedLinkError: no j3dcore-ogl-chk in java.library.path when I am trying to run Applet. Do any one have any idea. | |
Re: Hi, There is no need to call session_OnStart anywhere in the application. If you want to process something on session start. i.e. for example if you want to track no of users logged in, then only you have to write necessary code in Session_OnStart function in global.asa file. So whenever … | |
Re: I think you can try following code to solve your problem. [CODE] Dim temp temp = Request.Form("RadioGroup1") If temp <> "" Then messBody = messBody & temp & vbCrLf & vbCrLf End If [/CODE] If on selection of different radio button you want to handle it differently then you can … | |
Re: You can use following code to fetch form details [iCode] ' Request("application_name").count to get the number of rows For count=1 to Request("application_name").count application_name = Request("application_name ")(count) application_add_ticket_no = Request("application_add_ticket_no")(count) application_add_date = Request("application_add_date")(count) ' code to store details in sqlserver will come here. next [/iCode] | |
Re: You can create job. Job can be scheduled as per your need. Which MS SQL version are you using? | |
I have installed RHEL5.0 Server (Kernel 2.6.18-53.el5). I am trying to connect Nokia series40 Mobile using DKE-2 Cable. When I connect Mobile on one of the USB Port, Server gets hanged. The entries in the log/messages are as follows [QUOTE]Apr 9 18:08:43 FAPC08010038-803 kernel: usb 1-2: new full speed USB … | |
I am trying to connect Mysql5.1 from Perl 5.8.8 on RHEL5 as follows: [code] $dsn="DBI:mysql:database=mysql"; $dbh=DBI->connect($dsn, 'root', 'root', 'mysql',{RaiseError => 1}); [/code] When I try to run perl containing above connection, it gets connected to Mysql and fetches data but displays following warning. [QUOTE]DBI->connect using 'old-style' syntax is deprecated and … | |
Re: As per the message displayed, you can check in the Event log for the exact error message. | |
Re: [QUOTE=aashishn86;837719]i am saving the file by using[code] o.FileFullPath = Server.MapPath(".") & "\upload\" & sFile [/code] [/QUOTE] You need to give url as http:\\pathofyouraspfile\upload\filename. For e.g. if you are uploading file using upload.asp and url is http:\\websitepath\upload.asp Then url for downloading path will be http:\\websitepath\upload\filename | |
Hi, I am new to PHP and Mysql development . I had installed RHEL5 Server, Apache, PHP5 and MYSQL5.1. I got below script which actually give status of the Apache, PHP and MYSQL. [code] <?php session_start(); ?> <!-- INSTRUCTIONS: 1. Please copy this file anywhere in the DocumentRoot of your … | |
Re: Just specify the entire path where you want to store file as localFileName. | |
Is there any API to parse Word document and store it in database. For e.g. Say following is a content of word document. Name: ABC Address: XYZ Telephone: 12341234 Then from above document data extracted and stored in the table say Person_Details (Name, Address and Telephone). Can any one help … | |
I am new to Linux. I am trying to compress around 2GB file by using [B]compress -f [/B]command from command line. I am getting segmentation fault error while execution. Can anybody help me? | |
I m trying to use <jsp:include page> with apache tomcat 5.5.26 as follows [code] 679:</table> 680: </td></tr> 681: <tr><td colspan=2 width="100%"> 682: <jsp:include page="html/policy.html" flush="true"/> 683: </td></tr> 684: <tr><td colspan = 2 align="center"> 685: <input type="hidden" name="hide" value="3"> [/code] where policy.html is html file to display policy. while trying to … | |
When I m chcking running port by using nmap -sT -O localhost command i m geting following port rtunning PORT STATE SERVICE 21/tcp open ftp 22/tcp open ssh 23/tcp open telnet 25/tcp open smtp 80/tcp open http 111/tcp open rpcbind 113/tcp open auth 143/tcp open imap 631/tcp open ipp 993/tcp … | |
I m retreiving some data by using cursor inside which i m calling one recursive user defind function to retrive all child data which is linked to parent. While executing i m getting error stating : [B]Maximum stored procedure, function, trigger, or view nesting level exceeded (limit 32)[/B] How can … | |
I m trying to connect MYSQL 4.1.1 from JSP using java. and I m getting error as described below. javax.servlet.ServletException: Extra bytes at the end of class file org/gjt/mm/mysql/Driver org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:841) org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:774) org.apache.jsp.Login100408_jsp._jspService(Login100408_jsp.java:697) org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98) javax.servlet.http.HttpServlet.service(HttpServlet.java:803) org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:331) org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329) org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265) javax.servlet.http.HttpServlet.service(HttpServlet.java:803) plz help me I m not getting any solution. |
The End.