Coding Standards

w3c talks about scripting and gives examples. But I could not find a
coding standard for ASP/VBScript.I am trying to find any standards and tools to apply those standards to
my companies ASP/VBScript codebase.I am thinking that HTML Tidy can at least go through and cleanup the
HTML codebase

View Replies


ADVERTISEMENT

Coding Standards For ASP?

Looking for any info on coding standards for ASP? with the review/formatting of code? Is it done mainly for the jscript/vbscript components?

View Replies View Related

Standards Compliant

Can anyone recommend a standards-compliant (preferably valid XHTML & CSS) ASP forum, or even ASP.NET forum? Preferably free too! I'm asking a lot I know, but there are loads of non-compliant ones - surely someone must have produced an upgraded version

View Replies View Related

Asp And Html Standards

how many of you guys keep your html up to current standards? i was thinking about this and noticed that i get so focused on the asp part that i forget to keep my html parts up to current xhtml standards.

View Replies View Related

Coding ASP

I've read people using UltraDev and such - so tell me what benefits have you found ? I've noticed ASP.NET is very difficult to do with text-editors but I haven't found any reasons to code "normal ASP" with GUIs. How can you do a code like this:

dim foo = "I've heard Zenith is a fancy lad"
IF (foo) THEN
Response.Write("<a href=""foobar.asp?param=" & zoo & """>Woohoo</a>")
END IF

...faster with GUI ?

I'm waiting

-Z-

P.S I've just found this forum and it looks like the best ASP-related BBS I've seen

View Replies View Related

ASP Coding

If anybody can give me any tips or coding for search engine.I have created a search engine site.it is a kind of knowledge at work site.

View Replies View Related

Email Coding

f_strHost = "mail.my-site.com"
Set f_Mail = Server.CreateObject("Persits.MailSender")
f_Mail.Host = f_strHost
f_Mail.Port = 25


f_Mail.From = "feedback@my-site.com"
f_Mail.FromName = "feedback@my-site.com"
f_Mail.AddAddress "mysite_for_admin@my-site.com"
f_Mail.Subject = "Admin Record on Submission"
f_Mail.Body = f_msg_admin
f_Mail.IsHTML = True
f_Mail.Send

f_strHost = "mail.my-site.com"
Set f_Mail = Server.CreateObject("Persits.MailSender")
f_Mail.Host = f_strHost
f_Mail.Port = 25

f_Mail.From = "support@my-site.com"
f_Mail.FromName = "support@my-site.com"
f_Mail.AddAddress request("email")
f_Mail.Subject = "Customer Submission"
f_Mail.Body = f_msg
f_Mail.IsHTML = True

Is this a good email coding practice? i havent yet found any simple code but this one works on me.

I just want to send one email to the customer's email add and another to the admin(having a default email add =mysite_for_admin@my-site.com) while sending at the same time.

View Replies View Related

Sql Coding Problem

I have problem with my sql coding. The problem that i encountered is that i cant detect the in between time in my field. I have two fields namely PeriodFrom and PeriodTo which I set to text data type. However, let say the previous user has made a booking from 0750-1620, the subsequent user should not be able to book the in between time. I tried to use the sql operator but it seems like doesn't work at all. Is there anything wrong it?...

Below are my coding..
........
blnInvalidLab = False
blnInvalidPeriod = False
blnInvalidDate = False

View Replies View Related

Coding Standard

i have to write same sql statement twice.. is there anyway i can write statement once and call all the values in second combo box ? Code:

View Replies View Related

Combination SQL And ASP Coding

I am having a hard time figuring out how to sum records in an access table, and display them correctly with asp on a web page.

Here's an example of my table:

Organizations
orgID, orgName, noPeopleInvolved, noHoursWorked.

This table just keeps track of the number of volunteers an organization had at a particular event, and the number of hours the organization as a whole, put in.

Now, I can get it to where I display every single organizationName once, in a table (an html table on a web page), with columns OrgName, Tot People Involved, and Tot # of hours worked,
by using this asp code and getting each orgName from a basic select statement earlier in the code:

View Replies View Related

ASP Coding Errors

I have a form page that people fill out and push submit. When they push
submit, the information is stored in a database in two different tables.
You are then directed to a page that lists everything you have submitted so
you can print it. I am having problems with this second page. Information
from one of the tables is listed, but the information from the other table
isn't listed. They are related by the "casenumber" that is given when
submitted.

I have looked at the tables, and the information is there, and they have the
same casenumber, but the information doesn't get put on the 2nd page. We
just moved our site to IIS 6. Everything was working perfectly in IIS 5,
but is now "broken" in IIS 6. I always get the following error when it hits
the coding that should put in the information from the second table:

ADODB.Field error '800a0bcd'

Either BOF or EOF is True, or the current record has been deleted. Requested
operation requires a current record. Code:

View Replies View Related

Formpagetablefields Coding

I have the following code in my html page:

<tr>
<td align="left" valign="top"
class="formpagetablelabel"> initialinvestment</td>
<td class="formpagetablelabel" align="right"><input
class="formpagetablefield" type="number" name="initialinvestment" size="8"
Value="<%=formatNumber(Session("initialinvestment"),2)%>"font class="formpagetablefield">
US$</div></td>
</tr>

This command takes data from my database and shows the value in the formpagetablefield as a number.

Value="<%=formatCurrency(Session("initialinvestment"),2)%>"

has the format that negative numbers are in RED, in BRACKETS and to align to the RIGHT of the formpagetablefield.

How do I have to change the code to get the result?

View Replies View Related

Coding With Dates

I've got in my code a date in the format of dd/mm/yyyy (eg 10/06/2008). What I want to do is find out the number of days since last Thursday. Simple enough to explain, but I have no idea about how to go about coding it.

View Replies View Related

Enter Coding

i need a script to go from field to another in an asp page with the enter button instead of the tab button, and the submit button is the space instead of the enter button.

View Replies View Related

Coding For Different Languages

I am now creating a website which have 3 languages (English, Simplified Chinese and Traditional Chinese). The server has installed English version Window 2000 (Server Version, Default Codepage is Traditional Chinese) and MSSQL 2000 (English). I have created a database which use the codepage "chinese_PRC".

However, when I created an testing asp pages ( 1 textbox and it will insert the content into the table), it cannot store the chars in correct coding. I would like to know whether asp or MSSQL has something wrong in my setting?

View Replies View Related

Coding Standard In C#

coding standard in c# what is the best way of coding i mean some developers develop applications through direct query's INSERT,UPDATE,SELECT,DELETE or some developer develop applications through using classes create classes and call INSERT,UPDATE,SELECT,DELETE querys some developer develop application's through stored procedure create classes and call stored procedures i mean i am little confused what is the best way to written code .

View Replies View Related

ASP Coding Problem With SQL

What i am wanting to do is go through a database and count the number of times that a specific user has entered in an item (in this case a story)

I have some SQL to "try" and do this, however it isnt working...

storySQL = "SELECT * , COUNT (stories.user_id) AS num_ord FROM stories WHERE stories.user_id ='" & tempUserID & "'"

response.write storySQL

storyRS.Open storySQL, objConn
i dont really know what the num_ord is as it was in my sql book...

The error i am getting is: Code:

View Replies View Related

Coding A Popup Within My Page

I need direction on this. I don't know what its called, almost like a message box or something. First off, I have frames. Right now, the menu has a list of warehouses, and if you click on the warehouse on my site it then opens (in the 'main' part of the frame) all the hotline activity for the past 30 days. I would like it to instead of going straight to that page kind of popup a little box with an input box for someone to type in the amount of days they would like to go back, instead of the default 30. The thing is, I dont know how to code that in. It would look something like this (in my head anyway).

<%If (link)<>"" Then%>
<html><head><title></title></head>
<body>
<form action="" name="""" method="post">
Please enter the amount of days you would like to search by.
<input type="text" name=""days">
<input" type="submit" name=""submit"" value="Submit">
</form>
</body>
</html>
<%End if%>

View Replies View Related

How To Take CDO Coding Toreplace CDONTS

I'm having problems understanding why I would need to add this code to my Web Form when using CDO.

sch = "http://schemas.microsoft.com/cdo/configuration"

I'm don't like having anything rely on another location to make things work. Do I need to add this code in or is there a simplier way to change current CDONTS code. Code:

View Replies View Related

Coding For IMAP Email

I have a simple helpdesk page on our internal intranet where the users input their information and it emails them the ticket and info, etc. Well, we host our mydomain.com IMAP email offsite right now, so we have IMAP.MYDOMAIN.COM in DNS forwarded externally.

Problem is, most if not all users internally know their email address as myemail@mydomain.com, and NOT myemail@imap.mydomain.com. Since the email that gets sent to the engineers on the backend is hard-coded, the emails for our notifications work... (someone@imap.mydomain.com and will always work.

View Replies View Related

Image Changer Coding

Const ImagesRoot = "Graeme/pics"

Set fsoFolder = CreateObject("Scripting.FileSystemObject")
Set FolderRoot = fsoFolder.GetFolder(Server.MapPath(ImagesRoot))
Set FolderSubs = FolderRoot.subfolders
RndFolderNum = Int(FolderSubs.count * Rnd)

this is the code i have, all variables defined correctly and what not. however im still getting a error. its probably something stupid based on the error im getting but lets see if anyone can help

Error Type:
Microsoft VBScript runtime (0x800A004C)
Path not found
/ebus211g6/Graeme/rndimage.asp, line 19

View Replies View Related

Coding Of Delete Button

i want to a delete button that can delete the file i upload to localhost. what is the coding for the delete?

View Replies View Related

Search Engine Coding

I'm using an Oracle database and basically all my information is in there ready to use, what I'm having trouble with precisley is that:

I have a search field, when a somebody types in what they are looking for basically what I want the asp page to do is retreive that specific information from the database. Basically I don't know where to start. I'd be very grateful for any help you could provide me with.

View Replies View Related

How To Upload File Using Asp Coding

I need some help in uploading file using asp coding.

View Replies View Related

Coding A Menu System

I need to create a dynamic menu (used on the live site) within the CMS system that I am building in .asp. I have a DB which has a table that holds the pageID, pageName & page content, but now I need to somehow allow the editor to change the order of the menu i.e. if they add a new page they need to be able to move this page up to say 2nd in the menu list.

I imagine I will need to read out the content of this table and have a form in the recordset with a button for ‘Up’ and a button for ‘Down’ with a hidden ig i.e ?status=up. Then somehow if the ‘Up’ button is pressed that particular page will shift up one place in the list.

I also presume I will need a second table which will hold the page ID & sort Number. The problem is I am a little confused as to how I would actually go about coding a link between the tables in order to the re-orgainse the menu depending on what button is pushed. the menu will then obviously be read out on the main live site as the left hand side navigation.

View Replies View Related

Coding Using Visual Basic Or C?

I heard that there are two ways of coding with ASP. If I'm not wrong then it is by the use of VB or C.

What do these two terms mean?
When should one be used as opposed to the other?
How do I recognize a current website that is coded with either one?

Please explain. I'm new to all these technologies and ASP altogether.

View Replies View Related

HTML Coding Query

the coding I can put into the squeeze page so that if someone leaves my site by clicking the little cross in the corner without entering their details they are taken to my Sales page automatically.

Obviously id they complete their details they are taken via the autoresponder to my sales page but it would be nice to take them there if they click away from my site almost like and exit pop under.

View Replies View Related

Using ASP Coding ,wants To Open .doc File

i'm trying to open document file through ASP coding. but an error "Could not open macro storage" comes. what shall i do ?

View Replies View Related

Address Book Importer In Asp Coding

I wanted to setup a address book importer from yahoo,gmail script. I searched for the same on net but only got scripts in php , .net. But i need the script in asp

View Replies View Related

Site Recommendation Form Coding

I want to make a little form on my webpage where people can fill in their name, a friend's name, and a friend's email address and post them a message telling them about my site. Trouble is I have no idea how to go about it using ASP (I don't even know if I can use Frontpage to create an ASP page!).

I've looked at heaps of sample codes but they all seem to be slightly different. I can also manage to get almost exactly what I want using a remotely hosted script, but I want to be notified in my email whenever someone recommends the site and that script doesn't do that. Can anyone tell me a good code? I kinda don't want any popups involved, just the form on the page and redirected to the same page when finished.

View Replies View Related

Time Based Colour Coding!

What I would like is during the time the event actually occurs I want the field in the table to change colour and return to it's original colour when the time to expires.

I've written some ASP to do this, and it half works, but instead of colouring one event, it colours everything (because I use a repeat region i think). Code:

View Replies View Related

Coding Plian Text Email Urls

I am sending an email to subscibers of a news letter with the url of the latest newsletter in the email. this is built up in code. how do i encode it to include special characters such as spaces as %20. I have tried a simple replace routine but this gives errors on invalid chars.

View Replies View Related

Include Text File Data In Coding

I'm trying to include a value from a text file for the txRate variable in the code below. I tried using the include function as shown, but the double quotes are of course killing it. I don't want to use a data base to get this value, I just want the info from a text file. Can anyone suggest a solution? Code:

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved