Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: CdnRebel
  • Content: Threads
  • Order by date
  1. CdnRebel

    Attribute 'ms_2d_layout' is not a valid attribute of element 'table'

    Hi! I am new to Visual Studio and ASP.NET. I got the above error message on the code below. It is from an ASP.Net file (I think version 1.1). I get the error when I try to open it with Visual Studio 2005. Is there some other way of coding that; so that, I still end up with the same results...
  2. CdnRebel

    Will previous version of ASP.Net work with C# with VS2005

    Hi! I'm new to ASP.NET and Visual Studio and C#. If I have to compile my C# files with Visual Studio 2005, will they work with ASP.NET files created in previous version and updated outside Visual Studio 2005? I am currently using Visual Studio 2005 on the website folder on my desktop (I...
  3. CdnRebel

    How do I compile C# programs with Visual Studio 2005?

    I am new to asp.net, C# and Visual Studio. I've updated an existing website, made all the coding changes and found out that I've been working with C# and that they need compiling. I do not have an IIS server attached to my computer. I do not have a registered version of Windows XP on my...
  4. CdnRebel

    How do I compile a C# file using Visual Studio

    I am new to asp.net, C# and Visual Studio. I've updated an existing website, made all the coding changes and found out that I've been working with C# and that they need compiling. I do not have an IIS server attached to my computer. I do not have a registered version of Windows XP on my...
  5. CdnRebel

    My date is not displaying on my form

    I have two tables in my form. One for the user input and one for the submit and exit buttons. In between I have javascript to output a date to the screen. It's not happening. What am I doing wrong? Here's the code: <table> <!-- data entry code goes here --> </table> <% /** get today's...
  6. CdnRebel

    The right bracket from my input definition displays on my form

    How do I stop the right bracket from my input definition from displaying on my form? I'm using javascript so I can re-display the value the user has entered. Here is a sample of the code: <tr> <td>First Name: </td> <td><INPUT TYPE=&quot;text&quot; name=&quot;firstname&quot; <%...
  7. CdnRebel

    How do I check for record not found on my database

    I had this posted in the javascript forum because it's part of my javascript program, but someone replied to say that it's java code(?). I know response.sendRedirect is javascript, but I'm new at this so any help will do. This is the code I have, but I haven't incorporated the record not found...
  8. CdnRebel

    How do I check for record not found on database using javascript

    This is the code I have, but I haven't incorporated the record not found check in properly. How should it be done? Class.forName(&quot;sun.jdbc.odbc.JdbcOdbcDriver&quot;); Connection conn = DriverManager.getConnection(&quot;jdbc:odbc:DoctorLookUp&quot;,&quot;&quot;,&quot;&quot;); Statement...
  9. CdnRebel

    database not found java.sql.SQLException:[Microsoft][ODBC Driver Manag

    I defined a database using Access in my C drive. When I test my code the message I get is: database not found java.sql.SQL Exception:[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified. The code that seems to be causing the problem is somewhere in the...
  10. CdnRebel

    How do I define a text array field in design view?

    I am trying to create an empty table to be populated from a form which offers multiple checkbox selections, how do I define the field in design view?
  11. CdnRebel

    Use of URL, openConnection and URLConnection

    I'm trying to write a class to connect to a website. I've imported java.net.* and java.io.*, and on the following code I keep getting a cannot resolve on hp: URL hp = new URL(&quot;http://www.yahoo.com&quot;); URLConnection conn = hp.openConnection(); I'm not familiar enough with the...

Part and Inventory Search

Back
Top