Using CFFORM to validate

Hi everybody,
I'm using ColdFusion's form validation (cfform), but would
like to know if there's a way to change the generic message that
Codfusion throws at run time. The message generated by CF is: Error
in balance text.
This is kind of cryptic and instead I would like the message
to say: Please use numbers only!
Despite the fact that I have written this message in the
CFINPUT field, I still get the above generic message.
<cfinput type="Text" name="balance" message="Please use
numbers only." validate="integer" required="No" size="5"
id="al_itas_balance" validateAt="onSubmit">
Here's a snippet of the JS at run time:
//form element al_itas_balance 'INTEGER' validation checks
if (!_CF_checkinteger(_CF_this['al_itas_balance'].value,
false))
_CF_onError(_CF_this, "al_itas_balance",
_CF_this['al_itas_balance'].value, "Error in balance text.");
_CF_error_exists = true;
Here's my code:
<cfinput type="Text" name="balance" message="Please use
numbers only." validate="integer" required="No" size="5"
id="al_itas_balance" validateAt="onSubmit">
Does anyone have an idea of customizing the error
message?

This is very strange.
Your code works when I run it.
And this is js I get in my source code.
//form element balance 'INTEGER' validation checks
if (!_CF_checkinteger(_CF_this['balance'].value, false))
_CF_onError(_CF_this, "balance", _CF_this['balance'].value,
"Please use numbers only.");
_CF_error_exists = true;

Similar Messages

  • How to use Xerces to validate an XML file against a DTD

    Hi, can anybody tell me how to use Xerces to validate an XML file against a DTD. its urgent. post some sample code. it would be helpful for my project. isupposed to use SAX parser(Xerces)
    Thanx in advance

    Come on, I googled "xerces validate" and the first link is the Xerces FAQ:
    http://xerces.apache.org/xerces-j/faq-general.html
    And of course "how to validate" is a Xerces FAQ. Help yourself by doing a little research instead of waiting for other people.

  • Dynamic Forms (Data Dictionary) using CFForm (??)

    Hi,
    The basic plan is to build the forms in my application
    dynamically using a data dictionary rather than basing them upon
    static tables and having statically coded forms to match. This
    would allow me to offer the ability for an administrator to add new
    fields if required (client 'requirements' are hard to pin down and
    may therefore change).
    I'm developing using CF8 (hoping it will be released real
    soon..;-).). Application will be structured using Fusebox 5.
    I've tried building up the form elements (<cfinput>
    & etc) off in CFC, returning the layout result code in a
    content variable, and its not working.
    I have some other approaches to try, but this one would be
    preferable.
    Has anyone else tried this - and do you have any advice to
    offer (or am I just crazy trying it because there is no way its
    going to work ?)
    Thanks
    Bryn50

    This approach works well using standard html forms and html
    form controls such as <input> and <select> etc.
    I'm wanting to use CFFORM (for the first time in a long time)
    for the functionality on offer (such as flash forms).
    As I saw elsewhere, I have not used this in a verrry long
    time because generally I've found it inflexible and the validation
    on offer is a tiny subset of what is generally needed. I'm kinda
    hoping to be able to overcome that this time around by adding my
    own javascript validation when necessary.
    I have some ideas for approaches that might work, but they
    don't seem like very good ones to me:
    1/. might be to try using standard html form controls inside
    a cfform. Can I still have it display using flash ?
    2/. might be to have all of the logic that selects the
    appropriate cfform control for a given field in the same file as
    the cfform, however that seems so unelegant and also it defies the
    MVC/fusebox 5 approach I'm also wanting to use.
    Thanks for your help...
    Cheers,

  • Using cfform to interact with databases

    hi there, I am just trying to get ito using the cfform tag,
    and I thought it would be as easy to do insert into table ect using
    server behaviours, but clearly not! could somebody point me the
    right direction of some good tutorials please, to show me how to do
    all the wonderful interaction with Databases that I have been able
    to do with normal dreamweaver html forms...
    Many thanks

    I have found that <cfform> is a bit of a pain. I prefer
    using the standard <form>
    and writing the SQL myself. Much cleaner!
    <cfquery ...
    INSERT INTO t_someTable
    (column1, column2)
    VALUES
    '#trim(form.field1)#',
    '#trim(form.field2)#',
    </cfquery>

  • Using APEX to validate and move a file to directory on the network - How To

    Version 4.0.2.00.07
    Hello,
    I just received a requirement to create a screen to allow a user to upload an Excel file from their computer. The upload process would validate the columns in the file and move the file to a directory on the network where some other process would take that file and process it.
    The part I'm unsure about is the moving the file to the network directory when it passes the validation.
    Can someone help me with that part?
    What other information can I provide?
    Thanks,
    Joe

    Hello Joe,
    You can do that with UTIL_FILE API and FTP. Search PL/SQL forum with UTIL_FILE and NETWORK keywords.
    utl_file for another server, how to
    Regards,
    Hari

  • How to use Javascript to validate values....

    Hello :
    I have the following piece of code in my jsp
    <script>
    function doSubmit()
    if (!validate())
    return;
    document.create_request.action="ibu_conf_sr.jsp;
    document.create_request.submit();
    function validate()
    with (document.create_request) {
    if (document.create_request.sei_summary.value == '') {
    alert('Please enter Summary');
    return false;
    </script>
    <form method="post" name="create_request" action="ibu_cr_sr.jsp" >
    <tr>
    <td align="right" valign="top" nowrap>  </td>
    <td align="left" valign="top" nowrap>  
    <!--input type="submit" name="search" value="Submit Service Request"-->
                   <input type="button" value="Submit" onClick="doSubmit()">
    <input type="reset" name="Clear3" value="Clear">
    </td>
    <td width="13%"> </td>
    </tr>
    </form>
    I have a Submit button which will trigger the Java script doSubmit which in turn should Validate the values for one of the fields in the form ibu_cr_sr.jsp and only if the field has a value should it forward to the next page, ibu_conf_sr.jsp
    For some reason I am not able to get this to work.. what am I missing ?

    That's funny because it works for me. Cut and paste the following into a text file, name it test.html and open in IE. then try it.
    <html>
    <head>
    </head>
    <body>
    <script>
    function doSubmit()
    if (!validate()) { return false; }
    document.create_request.action="ibu_conf_sr.jsp"; //Added "
    document.create_request.submit();
    function validate()
    if (document.create_request.sei_summary.value == "") {
    alert('Please enter Summary');
    return false;
    return true;
    </script>
    <form method="GET" name="create_request"  >
    <input type=text name="sei_summary">
    <tr>
    <td align="right" valign="top" nowrap> </td>
    <td align="left" valign="top" nowrap>
    <!--input type="submit" name="search" value="Submit Service Request"-->
    <input type="button" value="Submit" onClick="doSubmit()">
    <input type="reset" name="Clear3" value="Clear">
    </td>
    <td width="13%"> </td>
    </tr>
    </form>
    </body>
    </html>

  • Login codes using java database (validates with Microsoft Access File)

    hi all pro-programmer, can you show me the code to login with the username and password using java database. When the user enters the username and password in the login page then it will go to the requested page. may i know how to do it?

    no one will give you complete code.
    i'll lay out the pieces for you, though:
    (1) start with a User object. give it username and password attributes.
    (2) write a UserDAO interface with CRUD operations for a User object.
    (3) write a UserDAOImpl for your Microsoft Access database
    (4) write an AuthenticationService interface
    (5) write an implementation of the AuthenicationService that works with the UserDAO to authorize a User.
    Use a servlet to accept request from your login page and pass it off to the service. Voila.
    PS - Here's skeleton to start with. UI, servlet, and controller are your responsibility:
    package model;
    public class User implements Serializable
        private String username;
        private String password;
        public User(String u, String p)
            this.username = u;
            this.password = p;
        public String getUsername() { return username; }
        public String getPassword() { return password; }
    public interface UserDAO
        public User findByUsername(String username);
        public void saveOrUpdate(User user);
        public void delete(User user);
    public class UserDAOImpl implements UserDAO
        private Connection connection;
        public UserDAOImpl(Connection connection)
            this.connection = connection;
        public User findByUsername(String username)
            String password = "";
            // logic for querying the database for a User
            return new User(username, password);
        public void saveOrUpdate(User user)
            // save or update a User
        public void delete(User user)
            // delete a User
    public interface AuthenticationService
        public boolean isAuthorized(String username);
    public class AuthenticationServiceImpl implements AuthenticationService
        private UserDAO userDAO;
        public AuthenticationServiceImpl()
            // Create a database connection here and the UserDAO, too.
        public boolean isAuthorized(String username)
            boolean isAuthorized = false;
            // Add logic to do the database query and decide if the username is authorized
            return isAuthorized;       
    }

  • Missing Property Inspector fields when using CFFORM

    I've created a CFFORM and added some text fields. When I
    opened the property inspector to change the fields properties all I
    see are two buttons to show attributes and contents. All the rest
    is gone. Any idea why this is happening?

    Hi,
    In generally we load text(descriptions and language) data only thru text data source.
    What fields you want load thru 0comp_code_text?
    if you need attributes data then look at data source 0comp_code_attr.
    Thru attr data source we can load attribvutes data.
    First screen shot is from?
    You can check data source fields at RSA6 and table - ROOSFIELDS.
    Thanks

  • How to Use Spry to Validate Radio button

    How to use Spry Validation for radio button?
    The samples only have checkbox, text, select and textarea.
    Thanks

    I needed to add radio buttons to the live (non-destructive)
    filter so users could choose which column they wanted to search
    data from. Its been modified from the "contains CB" but works
    nicely. It also had to rebuild table when another button was
    selected. I'll post some code if anyone would like to use it....
    The Form area -
    <form name="filterform">
    Data Filter: <input type="text" id="filterTF"
    onkeyup="StartFilterTimer();" />
    <input type="radio" id="containsCB" name="radio"
    value="module" onclick="resetfilter();" checked /> by Module
    <input type="radio" id="containsCB" name="radio"
    value="oper" onclick="resetfilter();" /> by Oper
    <input type="radio" id="containsCB" name="radio"
    value="phone" onclick="resetfilter();" /> by Phone
    <div id="radiovalue"></div>
    </form>
    The JS area -
    function FilterData()
    var tf = document.getElementById("filterTF");
    for (var c=0; c < document.filterform.length; c++)
    if (document.filterform[c].checked)
    var choice = document.filterform[c].value;
    if (!tf.value)
    // If the text field is empty, remove any filter
    // that is set on the data set.
    dsRows.filter(null);
    return;
    // Set a filter on the data set that matches any row
    // that begins with the string in the text field.
    var regExpStr = tf.value;
    regExpStr = "^" + regExpStr;
    var regExp = new RegExp(regExpStr, "i");
    var filterFunc = function(ds, row, rowNumber)
    var str = row[choice];
    if (str && str.search(regExp) != -1)
    return row;
    return null;
    dsRows.filter(filterFunc);
    function StartFilterTimer()
    if (StartFilterTimer.timerID)
    clearTimeout(StartFilterTimer.timerID);
    StartFilterTimer.timerID = setTimeout(function() {
    StartFilterTimer.timerID = null; FilterData(); }, 400);
    function resetfilter() {
    // var tf = document.getElementById("filterTF");
    // var tfval = tf.value;
    document.getElementById("filterTF").value = "";
    StartFilterTimer();

  • Validate backup using RMAN

    Hi,
    This is a 9i RAC environment. RMAN is used to take the backup. The database is running fine and backup is taken using cron 3 times a week. There is no error messages generated when the backup is taken.
    However, in the alert log file I noticed that there are corrupted blocks in the backup files. I tried to validate the backup using (restore database validate) but I ended up with erros. Then, I tried (validate backupset) to check the corruption and I am getting different errors. 2 of the backupsets says that the data file can not be verfied. 1 of the backupset throws ORA-06510: PL/SQL: unhandled user-defined exception
    Can anyone guide me with this problem?
    Thank you in advance

    Sorry,
    but there is one big problem: you don't backup your archivelogs!
    Apart from a series of redundant commands (about the only required command is 'backup database', the rest needs to be relegated to house keeping scripts), this script doesn't result in a valid backup at all!
    What I do is
    ORAENV_ASK="NO"
    export ORACLE_SID=${DB}
    . $ORAENV
    case ${TRACE:-""} in
    T) set -x ;;
    esac
    dg="`date +%a`"
    case "$dg" in
    Mon) LVL=0
    Tue|Wed|Thu|Sat|Sun) LVL=2
    Fri) LVL=1
    *) LVL=2
    esac
    echo $LVL
    exec 1>>$LOGFILE 2>&1 # redirect alle output naar de logfile
    # fase 1, maak een backup van de database. Bail out als dit fout gaat
    rman <<EOD
    connect target ${UID}
    set echo on;
    run
    backup incremental level ${LVL}
    tag="db${TIMESTAMP}" database filesperset=1
    format '${BACKUP_DIR}/${ORACLE_SID}/backup_%d_db_%T_%s_%p.bck'
    plus archivelog tag="arch${TIMESTAMP}"
    skip inaccessible
    format '${BACKUP_DIR}/${ORACLE_SID}/backup_%d_arch_%T_%s_%p.bck'
    restore database validate;
    And in my case I ran
    configure controlfile autobackup on, and I set the format appropiately.
    The main advantage ot this code is you can always use
    list backupset tag="db<yyyymmdd>"
    and you don't need to think about the tag.
    resync catalog is implicit with autobackup on;
    Autobackup is required anyway, as the autobackup saves you from loosing the catalog.
    backup database validate only ensures the database can be backed up (ie the corruption is not in the datafiles). It looks like in your case the corruption is in the backup.
    Obviously, due to legal regulations, I can not post the complete script.
    It is also a bit smarter than I have shown here. When this phase fails, it automatically deletes the backup, using the tag mechanism.
    Sybrand Bakker
    Senior Oracle DBA

  • Can I use my Free Books iConnect Account to validate EPUB of a client?

    I do freelance EPUB conversion and have my own free books iConnect account. Could I used this to validate my client's EPUB to make sure there will be no problem on their end when they deliver this on their side. Of course I will be deselecting all regions to make sure it would not be available in any regional iBookstore. Can I do this and is this legal?

    Hi Pitypat247,
    I do not see any subscription under your account. If you want to convert jpg to PDF that you must require PDF Pack subscription.
    However, you cannnot use online account. You need to save the jpg to your desktop and then you can use this subscription.
    I hope that answers your question.
    Let me know if you have any other question.
    Regards,
    ~Pranav

  • Is there a way to validate CFSELECT in CFFORM?

    Hi,
    I'm using CFFORM and using CF's own built in validation for all fields.  The required fields are valided and if they are left blank, the javascript pop up prevents the form from getting submitted.  It does not work with cfselect however.  It lets the form get submitted even if nothing is selected in the cfselect.  Why does does the validation skip over cfselect?  Is there a solution?
    Thanks!

    jenn wrote:
    Hi,
    I'm using CFFORM and using CF's own built in validation for all fields.  The required fields are valided and if they are left blank, the javascript pop up prevents the form from getting submitted.  It does not work with cfselect however.  It lets the form get submitted even if nothing is selected in the cfselect.  Why does does the validation skip over cfselect?  Is there a solution?
    Yes, there is a compromise solution, of sorts. Set cfselect's size attribute to 2.

  • Cflayout, cflayoutarea and cfform - can't use target _parent?

    CF9 - I'm using a cflayoutarea within cflayout, then inside of that I have a cfform for login. When I submit my cfform it loads my login page (submitted) inside of the cflayout window, which I don't want. I've tried using target _blank, _parent, etc but it changes nothing. If I use plain old form instead of cfform with target _parent, it works fine. So does something within cfform clash with cflayout or cflayoutarea that I don't know about?

    I'm bumping my own thread because I left this alone for awhile but want to revisit.
    <cflayout name="articleManagement"...>
    <cflayoutarea name="tabAdd" source="mysourcefile.cfm" title="blah">
    <cfform action="myactionpage.cfm" method="post" name="mypage">
    </cfform>
    </cflayoutarea>
    </cflayout>
    cfform processes myactionpage.cfm and hits the cflocation at the end of the processing page, it loads mysourcefile.cfm back into my cflayout articleManagement which shows one form on top of the other. My cflocation should direct it to the main page that holds the cflayout.
    Is there a way to break out of cflayout/cflayoutarea when using cfform? Using a regular form tag does not have this problem but I like using the cfform validation.

  • Spry validation and CFFORM

    I am using Spry validation on some of my forms and noticed
    that if I am using CFFORM, the validation works, but the form is
    still allowed to submit if the validation fails. If I change the
    cfform tags to regular form tags the validation works and the
    submit is NOT allowed. I really need to use CFFORM. Does anyone
    know what is happening here? Why is the form submitting even though
    the spry validation failed. ???

    Can we use onsubmit for simple form.
    Like below
    <form action="index2.php" method="post" name="loginForm"
    id="loginForm" style="clear: both;" onsubmit="return
    Spry.Widget.Form.validate(this)">
    <span id="username">
    <input name="username" id="username" type="text"
    class="inputbox" size="15" />
    <span class="textfieldRequiredMsg"> Username
    required</span>
    </span>
    <span id="password">
    <input name="passwd" id="password" type="password"
    class="inputbox" size="15" />
    <span class="textfieldRequiredMsg">Password
    required</span>
    </span>
    <a onClick="loginForm.submit();"> Login </a>
    </form>
    <script type="text/javascript">
    <!--
    //Text Field Vlidation
    var username = new
    Spry.Widget.ValidationTextField("username", "none", {minChars:1,
    maxChars:200, validateOn:["blur"]});
    var password = new
    Spry.Widget.ValidationTextField("password", "none", {minChars:1,
    maxChars:200, validateOn:["blur"]});
    //-->
    </script>

  • CFFORM and validation widget

    if you use a cfform this normally overwrites the spry
    validation at submit. Call on your cfform the validate() function
    on submit action. You should have something like: if
    (Spry.Widget.Form.validate(form) == true)....
    On submit check if the validate() function returns true or
    false. If true, continue submission, if false trigger the spry
    validation.
    Does anyone have a sample of the code, or more detailed
    information on the code reffered to above. I have included my code
    below:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml"
    xmlns:spry="
    http://ns.adobe.com/spry/">
    <head>
    <title>Admissions Application</title>
    <cfinclude template="/head/app.htm" />
    <script type="text/javascript">
    <!--
    function ValidateForm(form){
    if(Spry.Widget.Form.validate(form)==true)
    return true;
    //-->
    </script>
    </head>
    <body>
    <div id="container" style="background-image:none;">
    <div id="header">
    <cfinclude template="/templates/header.htm" />
    </div>
    <img id="leafBottom" src="/images/rightNavLeaf.png"
    alt="" />
    <div id="content">
    <cfform method="post" name="app" id="application"
    action="" onsubmit="javascript:return ValidateForm(this)"
    enctype="x-www-form-urlencoded">
    <div id="box">
    <h1>I.D. and Name Information</h1>
    <p class="section">Section 1 of 7</p>
    <h3>Social Security Number</h3>
    <div id="thessn">
    <label for="ssn"><span
    class="required">*</span>Social Security
    Number:</label>
    <p><cfinput id="ssn" class="field" name="ssn"
    type="text" size="10" />
    <span class="textfieldRequiredMsg">Please enter your
    social security number.</span>
    <span class="textfieldInvalidFormatMsg">Please enter a
    valid social security number.</span></p>
    </div>
    <div id="thessn2">
    <label for="ssn2"><span
    class="required">*</span>Re-enter Social Security
    Number:</label>
    <p><cfinput id="ssn2" class="field" name="ssn2"
    type="text" size="10" />
    <span class="textfieldRequiredMsg">Please re-enter
    your social security number.</span>
    <span class="textfieldInvalidFormatMsg">Please enter a
    valid social security number.</span>
    <span class="confirmInvalidMsg">Social Security
    entires do not match.</span></p>
    </div>
    <p><cfinput class="field" type="submit" name=""
    value="Submit Application" /></p>
    </div>
    </cfform>
    <script type="text/javascript">
    <!--
    var thessn = new Spry.Widget.ValidationTextField("thessn",
    "social_security_number", {isRequired:"true", validateOn:["change",
    "blur"]});
    var thessn2 = new Spry.Widget.ValidationTextField("thessn2",
    "social_security_number", {isRequired:"true", validateOn:["change",
    "blur"]});
    var spryconfirm = new
    Spry.Widget.ValidationConfirm("thessn2", "ssn");
    //-->
    </script>
    </div>
    <div id="footer">
    <cfinclude template="/Templates/footer.htm" />
    </div>
    </div>
    </body>
    </html>

    if you use a cfform this normally overwrites the spry
    validation at submit. Call on your cfform the validate() function
    on submit action. You should have something like: if
    (Spry.Widget.Form.validate(form) == true)....
    On submit check if the validate() function returns true or
    false. If true, continue submission, if false trigger the spry
    validation.
    Does anyone have a sample of the code, or more detailed
    information on the code reffered to above. I have included my code
    below:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml"
    xmlns:spry="
    http://ns.adobe.com/spry/">
    <head>
    <title>Admissions Application</title>
    <cfinclude template="/head/app.htm" />
    <script type="text/javascript">
    <!--
    function ValidateForm(form){
    if(Spry.Widget.Form.validate(form)==true)
    return true;
    //-->
    </script>
    </head>
    <body>
    <div id="container" style="background-image:none;">
    <div id="header">
    <cfinclude template="/templates/header.htm" />
    </div>
    <img id="leafBottom" src="/images/rightNavLeaf.png"
    alt="" />
    <div id="content">
    <cfform method="post" name="app" id="application"
    action="" onsubmit="javascript:return ValidateForm(this)"
    enctype="x-www-form-urlencoded">
    <div id="box">
    <h1>I.D. and Name Information</h1>
    <p class="section">Section 1 of 7</p>
    <h3>Social Security Number</h3>
    <div id="thessn">
    <label for="ssn"><span
    class="required">*</span>Social Security
    Number:</label>
    <p><cfinput id="ssn" class="field" name="ssn"
    type="text" size="10" />
    <span class="textfieldRequiredMsg">Please enter your
    social security number.</span>
    <span class="textfieldInvalidFormatMsg">Please enter a
    valid social security number.</span></p>
    </div>
    <div id="thessn2">
    <label for="ssn2"><span
    class="required">*</span>Re-enter Social Security
    Number:</label>
    <p><cfinput id="ssn2" class="field" name="ssn2"
    type="text" size="10" />
    <span class="textfieldRequiredMsg">Please re-enter
    your social security number.</span>
    <span class="textfieldInvalidFormatMsg">Please enter a
    valid social security number.</span>
    <span class="confirmInvalidMsg">Social Security
    entires do not match.</span></p>
    </div>
    <p><cfinput class="field" type="submit" name=""
    value="Submit Application" /></p>
    </div>
    </cfform>
    <script type="text/javascript">
    <!--
    var thessn = new Spry.Widget.ValidationTextField("thessn",
    "social_security_number", {isRequired:"true", validateOn:["change",
    "blur"]});
    var thessn2 = new Spry.Widget.ValidationTextField("thessn2",
    "social_security_number", {isRequired:"true", validateOn:["change",
    "blur"]});
    var spryconfirm = new
    Spry.Widget.ValidationConfirm("thessn2", "ssn");
    //-->
    </script>
    </div>
    <div id="footer">
    <cfinclude template="/Templates/footer.htm" />
    </div>
    </div>
    </body>
    </html>

Maybe you are looking for

  • Oracle 11.2.0.3 on Windows Server 2008 R2 64-bit

    Good night Oracle community, I'm having problems on using Oracle 11.2.0.3 on Windows Server 2008 R2 64-bit that runs inside a virtual machine. The first problem was the error ORA-12152 (unable to send break message) when using a 32-bit server version

  • How to find the number of users log into ESS for last three months

    Hi Team Is there any transaction / Report to find the number of users logged into the ESS and used the payslip tab. Is this possible to find? Waiting for hopeful replies. Regards Bhaskar

  • Special Character in Filename script - how do I escape it.

    Hello All. I'm attempting to call a file in sqlplus on a linux box. The file name has a special character. ex: i$_my_script.sql I've attempted to use @i$_my_script.sql @i\$_my_script.sql @i\\$_my_script.sql @"i$_my_script.sql" @'i$_my_script.sql' @'i

  • Best Way to Sync Lists Across Multiple Site Collections?

    A quick query I'm hoping someone might be able to help me with... Within our university intranet I am assigning each department a team site within its own Site Collection. So that departments can associate Document Library files with a set list of ac

  • T 40 Yellow DC-in block on the system board part number

    The DC conncector mounted on the system brd where the AC Adapter connects to the laptop. Does anybody know the part number for that. It is a failure I see in many of the t40 series laptop but I have not been able to locate a part number. It does not