Classic ASP Sytem Needs To Support Chinese Data Entry - To Do List

I have a large classic ASP web application which needs to now support chinese
character entry (I don't have to worry about the UI yet - the data entry
people can read english). Other than changing the database fields over to
"N" data types, do I need to do anything to the actual entry fields (input,
textbox) on the various forms to be able to capture the information. Some
users will be entering the information in english, while others will be
translating the same info into chinese as they enter it.

I know this is probably much easier in .net, but we have yet made that
transition. Now that 2.0 is available, it should be much more viable.

View Replies


ADVERTISEMENT

Adding A New Entry To A List Menu Based On A Database

Let's say I have a dynamic list/menu, which gets its values from a
database table, for example a list of contact people where the value is
an ID number and the label is the name. However, if the value the user
wants is not in the list I would like to place a hyperlink which
will...

(1) open a small window, with an ASP form to allow the user to add a
new entry

(2) save the entry to the database

(3) add that value to the list/menu in the parent window and make it
the selected option

(4) close the small window and return to the original window.

I can handle the code for 1,2 and 4, but 3 is what I'm not sure about.
I don't like the idea of forcing the user to leave the current screen,
go to some other form, add the entry they need to the lookup table,
then come back; this seems like a logical approach, but just wondering
how to make it work.

This seems like a common enough situation; anyone have any code samples
or suggestions about how to do this?

View Replies View Related

Data Entry

i m making a page on login basis, i hve an access datbse, after login user will enter a code which is already store in datbase, then form checks if this code is in databse if found then it will show some other records in databse, otherwse disply msg, user enter data in fields, after completing data cursor must go to code agian for another record, this data entry is in bulk, mean 200 recrds or more in one session, so may be i use batch procdure, then form save the records, same time a link on pge to edit this record, or if no code availble , operator can add new records

View Replies View Related

ASP Data Entry

I'm building a data entry and search tool. I've created a basic search facility and it seems to work ok but I don't know the code to create 'data entry' buttons. I want something that looks the same as the search facility but the submit button creates an entry in the databaseCan anyone give my the relevant commandscode?

View Replies View Related

ASP Data Entry Implementation

I need to write an ASP page that will allow a user to paste in data from an Excel spreadsheet. The data will only be in one column. I'm not a web programmer and would like some advice on the best way to do this.

I have a page working using a text area and some JavaScript to parse the data entries using the split function. This seems to work ok but I wondered if anyone could suggest a better way?

View Replies View Related

Duplicate Data Entry

I have a form to enter details about companies into a access DB, it all works fine the way it is set up except this one small problem.

The same company details can be entered again by mistake and take a new record set. Now what I need to know is how to stop this from happening, do I use ASP code to check the DB (if so could someone tell me how it is done) or do I set this up in the Access DB itself.

What I want to happen is if the same company details are entered then the user gets a warning telling them that that company has already been entered.

View Replies View Related

UK/US Format Data Entry

We are creating a multi-region ASP application which will be using SQL Server 2000. As our users exist in multiple location i.e. UK, US, Australia how can we distinguish that the date the user is entering is captured correctly i.e. no confusion with DD/MM/YYYY format.

I guess to remove database ambiguity I am going to use the format YYYYMMDD format but how do I know in the first place when the user entered 01/06/2006 that the user meant 1st June 2006 or 6th Jan 2006.

View Replies View Related

Data Entry Through Forms Layout

I have a table layed out in SQL 2000 like the following:

Username Date Hours Period
john 1/1 10 1
john 1/2 20 1

How simple is it for me to build a data entry form in ASP that would display this with input boxs for the hours field. The problem is I need it to span left to right on th eweb page.

Period 1
1/1 1/2 etc------------>
box box

SUBMIT BUTTON.

The key to the look would be the current period.

View Replies View Related

Data Entry In Asp Like Excel Spreadsheet

I have asp project where large volume of data entry would be done. I am
trying to find out if there is any tool that can allow me to build asp
application where the forms would be like excel spreadsheet.

View Replies View Related

Interface In Access For Data Entry Using Grid View

i often to make a user interface in access for data entry using Grid view. is there a possibility to make Data Entry user interface using Grid in ASP?

View Replies View Related

List Out Data

anyone know any homepage that might help me to list the data out in a page. i wanna do it like in 2pages that one is going to be the one who maintain data. another one is to list all the data out from server

View Replies View Related

Input Data In The Table List

I use while-loop the show the table content in web page. e.g (bookingno,
booking date,customer no)

However, the client need me insert one column (confirmdate ) and allow the
user input and update the date .

View Replies View Related

Display Data In The Dropdown List

This is just a test before i apply to my system. I have a student:

Table: Pelajar
pelCode : 1001 (datatype: Number)
pelName : Michael Lee (datatype: Text)
countryCode : US (datatype: Text)

Table: Negara
countryCode : US (datatype: Text)
countryName : United States (datatype: Text)

i want to display this student's country name in the dropdown list as a selected country name and at the same time, populate all country names in the dropdown list. but, i can't make it. i saw the selected country name is country name that at the 1st row of table Negara ......

View Replies View Related

List Field Data In Alaphabetical Columns

i have field company_name and what im trying to do is

A
Abrahams Company Alexs company AZ''x Company
Adams company Adrians Company

B

Bills company
Bobs Compay

I want the names spread over 3 columns and by alphebet category. can yous ee by the example what i mean? and is this easy to achieve?

View Replies View Related

Submitting A Form That Checks Entyered Data Is Not In An Exclusion List

I have an ASP form that users enter a number into. The form then posts
the number with a hidden login and password to a web address which
opens in a new window. However, I want make sure that the number they
enter is not one of the numbers I have in an Access database table that
contains a list of numbers they are not allowed to enter. How can I do
this?

View Replies View Related

Simplified Chinese

I have a 3 layer system, SQL Server 2000 database, COM+ dll's (VC++ 6) and
ASP frontend, this system has been in production for quite some time using
english, spanish and portuguese versions. Now I've been asked to test the
system to function with Simplified chinese. The development of the system
was outsourced and we don't have communication with the company (some sort
of legal problems i think).
Now, I've been reviewing the code and recompiled one of the core DLL's for
unicode support with no problems, I've tested the database (SQL Server 2000)
inserting Simplified Chinese characters and the DB supports it fine (the DB
fields are NVARCHAR), in the ASP frontend, the retrievel process (calling
the COM+ DLL functions) works fine displaying this data I inserted directly
in the DB.

View Replies View Related

Chinese Encoding

I developed a site in English but need it to be viewed in chinese.

Is it possible if so how do i go about it.

I've tried various ways but i can't get it to work.

I've done the following but it yieled no results.

<body lang="zh-TW" xml:lang="zh-TW">

Is there anything else i can do....

View Replies View Related

Chinese Asp To English Asp?

I have this program we use at work that keeps track of everyones hours and its what they use to clock in and out.

the whole this is in .asp and theres alot of bugs and things that need to be fixed but we cannot get much support on it so I was thinking of going in and fixing those things myself. but the thing is they seem to be in chinese is there a way i can convert the pages to english?

View Replies View Related

Chinese Character

some one cuts and pastes the chinese charcters.
they are saved in DB as
---- case1 : ----

& # 6 5 3 9 6 ; & # 6 5 4 2 7 ; & # 6 5 4 1 9 ;
----
i used the space above as it is converting the characters while posting..
but i noticed some few records which are saved as

-- case 2 --
ÓÀÀÖ´óµäÏ·ÎÄÈýÖÖУ
---

if values are stored as case1 then i have no problem.
but with the case2 .the chinese characters are shown good in few pages and at few pages they are shown as it like symbols.
when i cheked the its the same.what shd i do to see that in a html page these character codes display correctly?

View Replies View Related

Chinese Chars In XML

I am having a probem with asp, xml, com while using chinese chars. The chinese letters come out of com fine and they are also fine when i use asp to write to a text file.
When i load the chinese chars into an xml dom they become invalid Chinese chars show as this æˆ'çš,,模æ?¿. but when i doa xsl translation then some of the chinese chars are displayed and some are shown as garbage chars. My ASP Page has the following headers

<%@Language=VBScript CodePage="65001"%>

<%
Response.CharSet = "UTF-8"
Response.ContentType = "text/html"
%>

My XSL has the following header <?xml version="1.0" encoding="UTF-8"?> ..

View Replies View Related

Chinese Del Key On Web Forms

I'm currently having trouble with porting our classic ASP web app for Chinese users - in any web form, the Del key on a chinese keyboard clears all of the fields in the form, which is not ideal.

View Replies View Related

Chinese Character Conversion???

I've got an english site designed that I need to translate into Chinese.

I've got the Chinese wording to work with but I can't figure out how to get it into my code.

I thought I could simply paste the chinese characters from a Word document into my html editor between <P> tags using the PMingLiU or SimSun font but it just enters like this:
&#20844;&#21496;&#31616;&#20171;: turns into ????:

View Replies View Related

Simiplied Chinese Problem

I am writing an asp page which reads an access 2000 database. In the access database, there is data containing the simplied chinese characters. I used the following connection string to connect to the access database.

"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & GetServerPath & "..myDB.mdb;Persist Security Info=False"

When I use "Response.write(rs.fields("theField"))", I cannot get the original string which I can see in the Access. In fact, I have tried to use charset=gb2312, charset=big5, charset=utf-8 to encode the string, but all fails. (I am using tradition chinese OS). Can anyone help me?

View Replies View Related

Prevent Displaying Chinese

due to my 'Language for non-Unicode Setting' in Regional Settings,my ASP page keeps outputing the date format as Chinese Simplified characters when issuing say, <%=Now()%>. In addition, my client script also interpret it as Chinese characters, which I don't want it to behave this way.

However, I can't remove my 'Chinese (PRC)' settings in control panel as I need it for other Chinese version software. Does anyone knows how can I display the date in my ASP page in normal English? I did try out the META tag Content Type and put in several charset to try out, but seems like it doesn't work at all.

View Replies View Related

Passing Chinese Characters

How do I Pass chinese characters, charset GB2312 and BIG5, from Form to SQL using asp?
My field in SQL is already set to nvarchar.

View Replies View Related

Display Both Chinese And Portugues

I have been add the vb script:

......codePage=65001%>
and html document add the followings
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

But I cannot correctly received the chinese data (request.querystring) from other asp page, which data are the user input from it.

View Replies View Related

Chinese Character Conversion

I've got an english site designed that I need to translate into Chinese. I've got the Chinese wording to work with but I can't figure out how to get it into my code.

I thought I could simply paste the chinese characters from a Word document into my html editor between <P> tags using the PMingLiU or SimSun font but it just enters like this:
????: turns into ????:

View Replies View Related

Handle Chinese Characters

hwo to use ASP to handle chinese characters output? I have try two ways.store the string in a text file(unicode file) . store the string in an access database

The first method got an error:

Active Server Pages error 'ASP 0239'
Cannot process file
UNICODE ASP files are not supported.

The second method output "???" on the browser.

View Replies View Related

Chinese Characters In Asp Website

I've built a simple asp website with sql 7.0 backend. There's
a form based screens to save info to the database. I'm having problems for
some of our Chinese customers - they are saving information in Chinese
characters and they are being translated into weird characters. For
example: Code:

View Replies View Related

Getting Error Trying To Download URL Containing Chinese Characters

I have the following URL that was HTML encoded in my web page:

<a HREF="transfer/rad0/﨨.jpg" TARGET="_blank">﨨.jpg</a>

I am attempting to download this file which is simply one chinese character followed by .jpg. For IE, Netscape, Safari I right click on this URL and attempt to download the file. If the name contains only ASCII characters it works. I also cannot cut and paste this URL directly into IE and retrieve my image either. What do I need to do to be able to use Chinese (unicode) characters in URL's?

View Replies View Related

Read Chinese Character From Excel Using Asp

I use asp to develop a web page to read an excel file containing Chinese Character then display it in the web page. Unfortunately, I cant display it!!! it will display (?????????). Code:

View Replies View Related

Display Chinese Character, Work In One Server But Not In Another

I have an asp to display data in database, the data is in big5 encoding
(chinese characters)

I haven't specify the codepage in the asp and placed the file into 2 machine.
When I browse the file in NT machine the chinese characters can display
correctly, but doesn't for the page in my winxp machine. Both OS is english
version. Since the file is actually the same (by copy and paste), so any
setting in the OS or IIS level cause the problem?

View Replies View Related

How To Display Chinese Character In Asp.net Mobile Control

I having problem in displaying chinese character with asp.net mobile control. what configuration or settings should i set in Pocket IE or PC IE in order to display correct code page??

View Replies View Related







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