- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
32 Posted Topics
Re: make sure IIS is running,, type this in your browser [url]http://localhost[/url] | |
I cant load the image from database please help.. [CODE]strsql = "select top 1 id,shape from table" set rsgetimage = server.CreateObject("adodb.recordset") rsgetimage.open strsql,application("connectionstring") Response.Expires = 0 Response.Buffer = TRUE Response.Clear Response.BinaryWrite(rsgetimage("shape")) Response.ContentType = "image/png" rsgetimage.close [/CODE] it just display an x icon - thanks | |
My table has these info T123 T153 T174 Basic SQL count works fine which results to (3).. but when I use this function needed for my query the output is 4. [CODE] COUNT(DISTINCT CASE WHEN id LIKE '%T%' THEN RIGHT(ID, 3) ELSE 0 END) AS Count [/CODE] what's wrong with … | |
What does this function means. [CODE]contentEl : 'av',[/CODE] thanks! | |
Re: the damage has been done...all you need to do is secure your website more, there's a tons of ways do it..what I recommend is use google analytics(its free) on your site to view its activity and monitor all IPs visiting your website. change all credentials and learn how to encrypt … | |
Re: things you need to know 1. I use this link to upload files [url]http://www.tizag.com/phpT/fileupload.php[/url], make sure the dump folder is outside www root folder to make it more secure and set its permission using chmod 775 command. 2. you may use phpmailer or pear to send and attached files from … | |
Re: anonymous55, you are already learning the best way by asking thru this forum. keep it up | |
Re: you might find this link helpfull [url]http://www.techonthenet.com/sql/max.php[/url] give us a feedback. | |
Re: a little revision [CODE] <table> <tr> <td colspan="2"></td> </tr> <tr> <td></td> <td></td> </tr> <table>[/CODE] if you want just create new table inside your <td></td> so you could set the table width different from another table. | |
guys,,need help :( I cannot upload file using this script [CODE]<?php if($_FILES["zip_file"]["name"]) { $filename = $_FILES["zip_file"]["name"]; $source = $_FILES["zip_file"]["tmp_name"]; $type = $_FILES["zip_file"]["type"]; $name = explode(".", $filename); $accepted_types = array('application/zip', 'application/x-zip', 'application/x-zip-compressed', 'application/octet-stream', 'multipart/x-zip', 'application/x-compressed'); foreach($accepted_types as $mime_type) { if($mime_type == $type) { $okay = true; break; } } $continue = … | |
getting this error and im stuck in days.. please help Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. Parser Error Message: Could not load type 'LibrarySystem.Site2'. [CODE] Line 1: … | |
Guys, need help again, I cant get my mail script working... here is my code [CODE]<?php require_once "Mail.php"; $from = "Sandra Sender <sender@example.com>"; $to = "Ramona Recipient <recipient@example.com>"; $subject = "Hi!"; $body = "Hi,\n\nHow are you?"; $host = "ssl://mail.example.com"; $port = "465"; $username = "smtp_username"; $password = "smtp_password"; $headers = … | |
Re: instead of textbox make the zip field a combobox and it's values will depend on what country you select.. you can do this thru javascipt..in this case you don't need to validate zip info... | |
Re: you need to consider not just months but year as well, you can get month and year from a date column using month(datecolumn) year(datecolumn) by using "between" and these 2 code above you can get your problem solved, we may not know what exactly your problem is but we hope … | |
Need help guys.. I need to separate all labels from aspx & aspx.cs file to XML file but I getting this error Compiler Error Message: CS0029: Cannot implicitly convert type 'System.Xml.XmlNodeList' to 'string' here is my xml file [CODE=xml]<?xml version="1.0" encoding="iso-8859-1"?> <labels> <btn>Update</btn> </labels>[/CODE] and here is my aspx.cs file … | |
Re: you cannot add a fine on a daily basis unless you have some code to trigger it everyday... just use datediff function on the form the multiply it on the amount of fee per day | |
Re: what's on the line 134? | |
Re: he means you need to query first and get the value of borrowcount before you proceed on inserting new records. this is how i see it sql = "select borrowcount from table" if borrowcount <= 3 then sql = "insert into ***********" else 'alert the user end if if you … | |
I'm a newbie in PHP, I have a dynamic textbox which looks like these name="name1" name="name2" name="name3" the number of fields depends on how many user wants but the problem is on the SQL script, I need to put the $ctr besides "$_POST[name]" in order for the compiler see all … ![]() | |
Re: use iframe on your html page to display asp files. <iframe src='helloworld.asp'></iframe> | |
| |
Hi Guys. Is it possible to trap this error in Classic ASP, and redirect to another page instead of displaying this error? [COLOR="Red"] Microsoft OLE DB Provider for SQL Server error '80004005' Transaction (Process ID 104) was deadlocked on lock resources with another process and has been chosen as the … | |
Re: debasisdas is right,you can filter a date column by day,month or year.. splitting the date column into month and year only is not a good practice unless you have something in mind. let us know | |
Re: you mean organizational structure of your company? from president down to rank and file? | |
Guys, I need your help on this case This is my error: [Error 194 The base class includes the field 'PlanImg', but its type (System.Web.UI.HtmlControls.HtmlImage) is not compatible with the type of control (System.Web.UI.HtmlControls.HtmlGenericControl)] [B].aspx[/B] [<li><p onclick="SetSelectedTab(1,'../XXXXXX/XXXXXX.aspx')"><span runat="server" ID="PlanImg" datasrc="#DTSRC" datafld="link1"></span></p></li>] [B].aspx.cs[/B] [PlanImg.Visible = true;] This error is taking me … | |
Re: Try this on your desktop create new text file, open it and save As (type: All files) as "conn.udl". then new icon will be created after you save the file.. open it, choose a provider, then type in your server name and enter the log info of your server. then … | |
Re: create a loop and query all records having 10,000 cash, then check if fred and goerge displays on the result |