ASP / Code View Issues

Good morning to all of you.
I have used Dreamweaver at work for many years to manage our extensive classic ASP applications.  I like the interface but I have found that programming with a darker background is much easier on my eyes.  I found some dark code view background profiles that covered HTML/PHP/CFM files and loved how they looked on those type of projects but they were lacking ASP support.  I took the time to create the profile for ASP Vbscript and then copied it to ASP Javascript so no matter what language I'm in they will be the same.  It looks great but I have to fake out Dreamweaver to force it to view the code in the right file type.  It seems Dreamweaver is pretty inconsistent with determining the ASP file/language type.
If I use:
<% @Language="vbscript" %>
It will load the correct profile and things seem well.  If I don't do that, I not only don't get the correct coding but the commenting doesn't look right either.  I have to end every line with that has a comment a single apostrophe as well to keep it from getting the code view appearance looking wrong.
This hackish attempt above works but it bad style.  You can't define this more than once in a document and would be problmenatic if you use include files (who doesn't really?)...
I almost exclusively code ASP-VB.  How can I make Dreamweaver read ALL ASP files in this the ASP-VB format by default?  As it sits right now, it's totally wrong.
Thanks in advance,
Joe Jenkins

It's not so much doing with the actual language. It's the fact that Dreamweaver doesn't recognize that the .asp file is indeed ASP so it applied the wrong code view coloring, rules for comments and no suggestive code.  If I am drop the language in the top of the file, this corrects THAT file but if you have multiple include files and you push it to your server like this (wish this language definition in each of those files) you will get an error from the server for multiple definitions.
Exmaple:
Top of main file:
<%@Language="vbscript" %>
<!--#include virtual="../aspinclude/dbconnect.asp"-->
<!--#include virtual="../aspinclude/utils.asp"-->
<!--#include virtual="../aspinclude/utils_workorders.asp"-->
Top of an included file:
<%@Language="vbscript" %>
<%
dim StartTime : StartTime = Timer()
Session.Timeout = 120
If you tried to fake out the code view by doing that to MAKE it view the file as an ASP-VB file, it's not only bad practice, it's redundant and the server will cough at it giving you an error that simply tells you that the declaration has to be on the first line.  This is true, in the main file, but the included file would then put it inline on whatever line it happens to be as part of the compiled page which is invalid.
The main problem is that I have to fake out the code view by defining the language on every page I edit to get text-coloring right and other features.  The question is can I make it always default to maybe ASP-VB unless explicitely defined something else like @Language="Javascript" ?
Joe Jenkins

Similar Messages

  • Code View issue

    In Dreamweaver 8, when you place your cursor at any point in
    Design View, that area will be automatically selected in Code View.
    For some reason, this doesn't happen in Dreamweaver CS3. I hope
    it's just a bug and gets fixed soon. It's a very useful feature,
    and until things are clarified, I'm switching back to Dreamweaver
    8.

    It sure does happen for me, and I'm using CS3 on
    Mac/WXPPro/Vista.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "computernerd14" <[email protected]> wrote
    in message
    news:f1atpd$a5j$[email protected]..
    > In Dreamweaver 8, when you place your cursor at any
    point in Design View,
    > that
    > area will be automatically selected in Code View. For
    some reason, this
    > doesn't
    > happen in Dreamweaver CS3. I hope it's just a bug and
    not some sort of
    > feature.
    > It's a very useful feature, and until things are
    clarified, I'm switching
    > back
    > to Dreamweaver 8.
    >

  • Code View Toolbar Issue

    I've had a weird issue under Dreamweaver 8.02. It started
    under Vista and of course I blamed the OS and went back to XP. Well
    now it's occurring there as well. It all happens in code view which
    is where I work all the time. The toolbar buttons will not work. I
    can't move to Split or Design view or edit the title from the
    toolbar.
    I've tried looking around in the toolbar XML files, but
    nothing seems to help.
    Any thoughts?

    It sure does happen for me, and I'm using CS3 on
    Mac/WXPPro/Vista.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "computernerd14" <[email protected]> wrote
    in message
    news:f1atpd$a5j$[email protected]..
    > In Dreamweaver 8, when you place your cursor at any
    point in Design View,
    > that
    > area will be automatically selected in Code View. For
    some reason, this
    > doesn't
    > happen in Dreamweaver CS3. I hope it's just a bug and
    not some sort of
    > feature.
    > It's a very useful feature, and until things are
    clarified, I'm switching
    > back
    > to Dreamweaver 8.
    >

  • ASP in 'Design View' Issues

    I'm trying to add ASP includes that I created in DW using
    simple HTML and saving it out as ASP into a ASP Page in DW that
    originally came from FrontPage :( When I include these ASP includes
    I loose the visual of all my elements when I'm working in the
    Design and Code View. Which I would rather edit in Design that
    Code.
    FYI: When I brought the original ASP page from Frontpage in
    DW I was able to VIew the html elements and had the ASP icon in the
    corresponding ASP includes which is perfect.
    Please any help would be great. Obviously I have been thrown
    into a programmers world and I'm drowning. :)

    It sounds like your includes are full HTML pages and not just
    snippets. The
    includes cannot have <head>, <html>, or
    <body> tags anywhere.
    "hairpeace65" <[email protected]> wrote in
    message
    news:f32bi9$i8v$[email protected]..
    > I'm trying to add ASP includes that I created in DW
    using simple HTML and
    > saving it out as ASP into a ASP Page in DW that
    originally came from
    > FrontPage
    > :( When I include these ASP includes I loose the visual
    of all my
    > elements
    > when I'm working in the Design and Code View. Which I
    would rather edit in
    > Design that Code.
    >
    > FYI: When I brought the original ASP page from Frontpage
    in DW I was able
    > to
    > VIew the html elements and had the ASP icon in the
    corresponding ASP
    > includes
    > which is perfect.
    >
    > Please any help would be great. Obviously I have been
    thrown into a
    > programmers world and I'm drowning. :)
    >
    >

  • Dreamweaver code view letter spacing issue

    Good Morning at all,
    This morning when i've started DreamWeaver i've seen something change.
    As you can see in the picture below in the code view, the letters spacing is became really bigger than the normal.
    In the picture below i've done a piece of code with my dreamweaver in the top and in the bottom with one of my friend.
    When i try to change the font from the preferences menu (for example Verdana) the problem seems to solve but when i change again to Courrier New the problem return.
    What can i do?
    For me it is really frustrating to work with this problem and I do not understand why it bothers me so much,
    Thanks for the help guyes!
    Manuel.

    To change code formatting, go to Edit > Preferences > Code > Indent.  Then use Command > Apply Source Formatting.
    Nancy O.

  • Problem with disabled code view

    Hi,
    I've a problem with a template-based website which works fine
    in design view but will not allow edits in code view (with the
    exception of the contents of the <title> element). The
    template has multiple editable regions and has been deployed on
    quite a few occasions to multiple authors with varying
    configurations without any trouble before, but now it is causing
    quite a bit of head-scratching!
    The problem originally manifested in Dreamweaver MX 2004 on
    Windows 2000. An upgrade to Dreamweaver 8 has taken place and the
    issue persists. Testing on a similar computer using a standard
    shared drive in Windows shows the same problem in Dreamweaver 8 but
    was fine in Dreamweaver MX. Working with a copied set of files on a
    remote computer (Win2k and DW MX 2004) seems to somehow resolve /
    circumvent the problem and the code view works fine. Unfortunately
    this isn't an option for the main authors of the site who have only
    their current machines available.
    The fifth post down in a
    thread
    over at DMXzone seems to refer to a similar problem, but the
    workaround highlighted there has not worked for me.
    I'm not really a heavy Dreamweaver user but I can normally
    figure things out. This one however has got me stumped - anybody
    got any ideas? (Apologies if it's a really simple setting or flag
    that I should know about, but I've not been able to find anything!)
    Cheers,
    Dan

    Ca you post a link to the page, please?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "yorkdan" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi,
    >
    > I've a problem with a template-based website which works
    fine in design
    > view
    > but will not allow edits in code view (with the
    exception of the contents
    > of
    > the <title> element). The template has multiple
    editable regions and has
    > been
    > deployed on quite a few occasions to multiple authors
    with varying
    > configurations without any trouble before, but now it is
    causing quite a
    > bit of
    > head-scratching!
    >
    > The problem originally manifested in Dreamweaver MX 2004
    on Windows 2000.
    > An
    > upgrade to Dreamweaver 8 has taken place and the issue
    persists. Testing
    > on a
    > similar computer using a standard shared drive in
    Windows shows the same
    > problem in Dreamweaver 8 but was fine in Dreamweaver MX.
    Working with a
    > copied
    > set of files on a remote computer (Win2k and DW MX 2004)
    seems to somehow
    > resolve / circumvent the problem and the code view works
    fine.
    > Unfortunately
    > this isn't an option for the main authors of the site
    who have only their
    > current machines available.
    >
    > The fifth post down in a
    >
    http://www.dmxzone.com/forum/topic.asp?topic_id=33748
    > seems to refer to a similar problem, but the workaround
    highlighted there
    > has
    > not worked for me.
    >
    > I'm not really a heavy Dreamweaver user but I can
    normally figure things
    > out.
    > This one however has got me stumped - anybody got any
    ideas? (Apologies if
    > it's
    > a really simple setting or flag that I should know
    about, but I've not
    > been
    > able to find anything!)
    >
    > Cheers,
    > Dan
    >
    >
    >

  • CS3: Code View hangs badly on complex pages

    I have a significant number of web applications that are
    written with the Fusebox development methodology, which makes for
    at least one page with a sizeable cfswitch tag. In Dreamweaver MX,
    these pages would hang if I opened them in design view, but code
    view would be perfectly responsive. In CS3, they hang in code view
    exactly the same as in design view, and worse so than MX ever was
    in design view. A file with a 1308 line CFSWITCH statement froze
    CS3 for about 8 minutes and refroze every time I clicked in the
    file (half an hour later I finally got the file closed and opened
    it up in TextPad to do the 10 second change that I needed to do).
    Anyone know if there's a fix for this?

    Update - I did find a partial fix... there's a bug in CS3
    that's really odd, something to do with when daylight savings time
    changes, it was making dreamweaver randomly crash when I clicked on
    items (despite that it says it only affects php and asp files, it
    was doing it with coldfusion, too). When I followed the
    instructions in the fix to get rid of the crashes, it seemed to
    improve performance with the other issue as well. Not completely
    fix it, but it seemed to hang less often and for a shorter time.
    YMMV though.
    http://www.adobe.com/go/kb402776

  • Crystal report run from ASP code significantly slower than when run in CRS

    We have CRS XI R2.  I developed a report that contains several on-demand sub-reports.  The report and sub-reports are very fast when run directly from CRS.  However, when I run from ASP (users run a link from the intranet), it takes 4 times longer (1 second on CRS, vs. 5-10 seconds on intranet).  The report takes longer, bringing up a sub-report takes longer and paging through sub-reports take longer.  What can be done to improve the speed of the report that is using the ASP code?  I used a sample program provided at this support site to develop the report and it is pretty basic code.  The only time I have a problem is when I have many sub-reports.  Since they are on-demand, I do not know why this would matter.

    This has been created as an incident with SAP support.  Things that you will want to check is making sure that you handle the postback to the code as you do not need to run your entire code on every postback.  This will help performance after the original load. 
    One other thing is to compare performance with the viewer within Infoview that uses the same backend server as your application, ie PSReportFactory uses the page server, so you'll want to test with the DHTML viewer.  RAS code (reportclientdocument) uses the Report Application Server so you will want to test with the Advanced DHTML viewer.

  • DW CS6: Extra empty blank line in code view causing trouble!

    Hi all,
    I searched for hours for a solution to the following problem, without any success.
    When coding in Dreamweaver CS6 (Version 12.0, Windows 8.1), an extra non-editable blank line is automatically added at the bottom of the document (in code-view). This is a nice feature, since it clearly separates the end of the document from the rest of the DW user interface. BUT:
    WHEN you have "Word Wrap" disabled (i.e. horizontal scroll bars appear if one or more lines are longer than the current view),
    AND no line is actually longer than the view (i.e. NO horizontal scroll bars),
    AND you click somewhere into the document while the vertical scroll bar is at the very bottom,
    THEN the code view jumps one line upwards causing a selection of 2 lines.
    This might not seem to be a big issue at first glance, but surprisingly often all of the mentioned conditions are met.
    Is there any possibilty to somehow get rid of this problem?
    Note: The problem does not occur when any of the above conditions is false.
    Cheers!
    CamelCase

    This is strange...
    Yes, I just updated DW to 12.03 a minute before I posted the question. ;-)
    Are you sure you cannot reproduce it? Is there a blank line at the bottom of your editor as well?
    Here are the conditions again:
    Word Wrap is disabled.
    No line too long for vertical scrollbar to appear.
    Scroll fully down in the code view.
    Click somewhere into the document.
    Effect: The view jumps exactly one line upwards (such that the mentioned blank line just disappears), and instead of a blinking cursor, two lines are selected.
    Here is a screenshot before/after the click:
    I appreciate any help. Really, thank you!!

  • Getting rid of Multiple Spaces in Code View (after Copying/Pasting)

    Hello,
    I'm trying to find a way to get rid of multiple spaces between words in Dreamweaver CS3's code view.
    Oftentimes, when I copy/paste text from elsewhere (e-mail, website, etc), the Dreamweaver code shows up with multiple spaces. Normally, that wouldn't be problem -- except that my blog's auto-tag plug-in doesn't detect selected phrases when there are multiple spaces between words, e.g., it'll detect "Swiss Alps" in a post but not "Swiss  Alps" (notice the extra space between words in the second phrase).
    If at all possible, I'd like to be able to keep Dreamweaver's text formatting option when I copy and paste, as that means I don't need to manually put words in bold/italics.So, is there a way to keep that option while getting rid of all the extra spacing between words?
    By the way, I'm familiar with Wordpress CSS, but not with Dreamweaver CSS. Not sure if there's any difference.
    Any assistance would be much appreciated.

    I make it a point to never paste formatted text into HTML pages.  Formatted text from MS Office usually contains a variety of junk you don't want and I don't have that much faith in MS Word code removal tools.
    Bold and Italics from Word or Outlook should be changed to current HTML tags of <strong> for bold and <em> or emphasis for italics anyway.  Also see Logical Tags here:
    http://www.htmlcodetutorial.com/logical.html
    Find and replace is good for removing whitespace if you know how to do it correctly. Make backup copies just in case things go wrong.  http://www.tjkdesign.com/articles/whitespace.asp
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb

  • Editable region but not in code view

    EDIT: While cooking dinner I thought that the computer "fixes" itself when it reboots what about Dreamweaver?  I closed DW down.  Reopened the app and voila.  I CAN edit that section in code view now.  It's weird but it appears to be working.  I'll repost if something is amiss again regarding this issue.  I'll leave the post up in case it's helpful to anyone else.  thanks.
    I have new pages made from a template.  I can only edit in design view NOT in code view.  I get the standard error of I'm trying to edit where I'm not allowed.  I've made templates many times but never had this problem (I don't think!).  Does someone have a tip or help for me?  In addition to this issue I was not able to change the title of the page until I added the editable region in the template for title line.  That's always been default editable before.  Thanks a lot. I'm using DW8.
    begining code from template:
    <!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">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- TemplateBeginEditable name="title" --><title>Party Invitation Boutique</title>  <!-- TemplateEndEditable -->
    begining code from new pages:
    <!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"><!-- InstanceBegin template="/Templates/index.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- InstanceBeginEditable name="title" --><title>Baby Blue</title>  <!-- InstanceEndEditable -->
    -------------then further down on the page is the editable region-------------
    <!-- InstanceBeginEditable name="main_content" -->
    <div id="content_right">test only can type in design view. can't add div boxes
      even in this editable region. ugh. can't even type next this this text in the
      code view. </div>
    <!-- InstanceEndEditable -->

    Best thing you can do in the future is run your code through the validator if the editable region exists:
    http://validator.w3.org/
    If there are code errors with other tags on the page then it is possible DW is overlooking its own template code.  Unfortunately without seeing the whole page I cannot say this is definitely the case, but a likely possibility.

  • Dreamweaver CC automatically deletes code in code view and elements in design view

    When I open a file in Dreamweaver, it automatically shows a * next to the filename - showing it has been edited.
    Then often when I select some code in code view, or an element in design view (such as a table, an image, some text) it is suddenly deleted.
    The problem is especially bad (happens without fail) if I am switching between programs. But also happens when I'm not switching.
    I do not have this problem on a different user account.
    I have reinstalled Dreamweaver three times now. Also renamed preference and configuration folders. Tried with a wired mouse and keyboard. Nothing has worked.
    I can't think what I did to cause this. I installed MAMP recently - but have uninstalled it correctly I think.
    I had an issue with one file in which there were about 30 Spry collapsible panels. I kept getting this warning:
    "A script in file Macintosh HD:Applications:Adobe Dreamweaver CC:Configuration:Shared:Spry:DesignTime:EditingUtils.js has been running for a long time. Do you want to continue?"
    I have to click 'yes' many times to get into the file, and the warning keeps coming up while the file is open.
    However, my big issue of DW CC deleting code and elements happens whether or not this particular file is open.
    So this may have nothing to do with it.
    Any ideas anyone?
    Adobe's customer service has not helped. In fact, I have not even been able to get through to anyone on the phone - having waited literally hours listening to music, and getting shunted from person to person. And then their promised 'call backs' never happen.
    Thanks,
    - Greg

    I do not have this problem on a different user account.
    You've got a bad/corrupted user account.  Create a new one with Admin level priveleges and delete your old user.
    Nancy O.

  • Dreamweaver 8 freeze in Code-View

    I have a Site: ASP/VBScript; Testserver local;
    When I open my function libary (file: funktion.asp with 5000
    lines) and go to the Code-View and click into the code
    Dreamweaver 8 freeze. I know I'm not the only one with this
    problem, but I didn't find a fix/workaround.
    It should by a Dreamweaver/File problem, because all
    Developer in my Team (five developer) have the same problem.
    With DW MX 2004 we had no problems! Since last week we use DW
    8.0.2 on different machines.

    Can you please submit a bug report so we can get your file?:
    http://www.adobe.com/go/wish
    Thanks,
    David Alcala
    Adobe Product Support

  • Help! Can't paste into code view or property inspector

    I'm experiencing a weird and extremely annoying bug in Dreamweaver CS6 -- I can't paste text from outside apps into DW's code view or into the property inspector (such as URLs).
    Pasting doesn't work no matter the method: Ctrl + V, right-clicking or using the Edit menu. Pasting works normally in every other program. If I copy within Dreawmweaver, pasting works fine.
    Does anyone have a solution for this? I'm running Win 8 and DW 12.1 through Creative Cloud. Searching the forums, I see others have reported the same issue. Some have been able to fix it by deleting the configuration file; that didn't fix the issue for me. I'd like to try reinstalling DW, but the Adobe Application Manager doesn't seem to allow that.
    I began noticing this bug about two weeks ago. That might have been about the same time I updated to 12.1. Can anyone help?
    Thanks,
    Cory K.

    Adding to my last post, I used a clipboard format inspector called nclip (http://code.google.com/p/nclip/) to see if I could find a pattern between "what works" and "what doesn't".
    There are two cases where I'm seeing paste-into-Dreamweaver CS6 fail:
    Paste into Code View fails, but Paste into Design View works!
    Paste into either Code View or Design View fails
    I went through the list of programs that worked and didn't worked, using nclip to show what clipboard formats were being saved from each working and non-working source. It appears that DreamWeaver CS6 as of January 9, 2013 doesn't accept the most basic text clipboard formats:
    CF_UNICODETEXT
    CF_TEXT
    CF-OEMTEXT
    CF_LOCALE
    If these are the only clipboard formats used by an app (for example, Window's venerable Notepad.exe), Dreamweaver doesn't appear to handle them. Most programmer-style text editors output just these formats, because they are presumed to be understood any application that handles text. These fail for both pasting into codeview and design view.
    Interestingly, Chrome browser fails the code view test, but it does work in design view! It outputs the four clipboard types above, plus one more:
    Custom Format: HTML Format
    Hypothesis 1: Any application that puts HTML Format on the clipboard will paste into design view, but not necessarily code view.
    Next, Visual Studio 2010 and Sticky Notes, which doesn't include HTML Format as a clip type, works for both code view and design view. They both output this type in addition to the basics:
    Custom Format: Rich Text Format
    Two programs that output Rich Text Format without HTML Format are Sticky Notes and WordPad. These both work with Code View and Design View. From these limited tests on my system, it appears that for Dreamweaver to accept a text paste from an outside program into Code View, that program must output Rich Text Format to the clipboard. Otherwise, it fails. Dreamweaver will accept HTML Format, but only in Design View. Firefox is an exception in that it don't export Rich Text Format, but still works with Code View. It might use OLE, though (Chrome doesn't seem to use OLE, and it breaks in code view).
    Hypothesis 2: Any application that puts Rich Text Format on the clipboard will paste into design view AND code view.
    If Dreamweaver is really ignoring the basic text clipboard formats, and it's not just my system configuration, then this is a bug. Probably something that got overlooked in testing.
    To reproduce on Dreamweaver 12.1 build 5966:
    Try copy/pasting text from Notepad.exe into Dreamweaver Code View (DWCV). This fails for me.
    Try copy/pasting text from WordPad.exe into DWCV. This works!
    Try copy/pasting text from Internet Explorer 9 or Firefox into DWCV. This works!
    Try copy/pasting text from Chrome. This fails to paste into Code View, but does paste into Design View
    The Code View workaround:
    Use Firefox or Internet Explorer for your browser if you're copy/pasting source code.
    If you're working from another text editor, try copy/pasting into intermediate programs Sticky Notes or WordPad, then copy/paste from there into Dreamweaver.
    So that is my experience on Windows 7 64-bit. Anyone else experiencing the same thing?

  • DWCS6 - can't edit in Code view {subject edited by moderator}

    In the split view or the design view, I can edit text anywhere on the page but when I click on the code side the text is grey and line number bar turns blue. Is there a way to turn the editing back on in the code view? Working on a PC with a document created on a mac.

    No, it won't let me edit in the code at all.
    Here's the code:
    <!DOCTYPE HTML>
    <html><!-- InstanceBegin template="/Templates/OCVR.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <!-- InstanceBeginEditable name="doctitle" -->
      <title>OVCR | New Researcher Guide</title>
      <!-- InstanceEndEditable -->
    <!-- Mobile Specific Metas
    ================================================== -->
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
    <!-- CSS
    ================================================== -->
    <link rel="stylesheet" href="../css/reset.css" type="text/css" media="all" />
    <link rel="stylesheet" href="../css/responsive.css" type="text/css" media="all" />
    <!--[if lte IE 7]>
      <link rel="stylesheet" type="text/css" href="/ovcr/css/ie7.css" />
    <![endif]-->
    <!-- OTHER LINKS
    ================================================== -->
    <link href="http://illinois.edu/lb/rss/19/text.xml" rel="alternate" type="application/rss+xml" title="Illinois News Bureau: Research" />
    <!-- JS
    ================================================== -->
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
    <script src="../scripts/search.js" type="text/javascript"></script>
    <script type="text/javascript" src="http://emergency.webservices.illinois.edu/illinois.js"></script>
    <!-- InstanceBeginEditable name="head" -->
      <link rel="stylesheet" href="../css/smoothness/jquery-ui-1.8.23.custom.css">
      <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.min.js"></script>
      <script>
      $(function() {
      $( "#accordion" ).accordion({
      active: false,
      autoHeight: false,
      collapsible: true,
      header: 'h2'
      </script>
      <!-- InstanceEndEditable -->
    </head>
    <body>
    <div id="header">
      <div class="wrapper">
      <div id="logo"><a href="http://illinois.edu/"><img src="../images/uiuc.png" alt="The Office of the Vice Chancellor for Research" width="57" height="71" /></a><a href="../index.cfm"><img id="ovcr-logo" src="../images/invisible.png" alt="The Office of the Vice Chancellor for Research" width="437" height="63" /></a></div>
      <div id="campus">
      <ul id="nav_2">
      <li class="firstLI"><a href="http://illinois.edu/map/view">Maps</a></li>
      <li><a href="http://illinois.edu/ds/azList">A-Z Campus Index</a></li>
      </ul>
      <form action="" onSubmit="sendSearch()" id="" name="gs" method="get">
      <input type="hidden" name="search">
      <input type="hidden" value="all" name="search_type">
      <input type="hidden" value="" name="skinId">
      <input type="hidden" value="" name="cx">
      <input type="hidden" value="" name="cof">
      <input type="text" onFocus="checkSearchValue()" value="Search" size="10" class="searchbox" id="q" name="q">
      <input type="submit" id="go" class="searchbutton" value="Search" name="sa">
      <ul id="searchRadio">
      <li>
      <input type="radio" checked="checked" value="1" id="searchType_people" name="t">
      <label for="searchType_people">Directory</label>
      </li>
      <li>
      <input type="radio" value="2" id="searchType_info" name="t">
      <label for="searchType_info">Illinois</label>
      </li>
      </ul>
      </form>
      </div>
      </div>
    </div>
    <!-- <= end #header -->
    <div id="nav_main">
      <ul>
      <li><a href="../research/index.cfm">Research Funding</a></li>
      <li><a href="../policies/index.cfm">Policies &amp; Compliance</a></li>
      <li><a href="../training/index.cfm">Training for Researchers</a></li>
      <li><a href="index.cfm">About the OVCR</a></li>
      </ul>
    </div>
    <!-- <= end #navigation -->
    <div class="wrapper">
      <div id="crumbs"><!-- InstanceBeginEditable name="crumbs" --><a href="../index.cfm">Home</a> &raquo; <a href="index.cfm">About the OVCR</a> &raquo; <strong>New Researcher Guide</strong><!-- InstanceEndEditable --></div>
      <!-- <= end #crumbs -->
      <div id="content-bg">
      <div id="content">
      <div id="article"> <!-- InstanceBeginEditable name="content" -->
      <!-- <= end #crumbs -->
      <div id="content">
      <div id="article"> <!-- InstanceBeginEditable name="content" -->
      <div id="subNav"><!-- #BeginLibraryItem "/Templates/about.lbi" --><ul id="menu_resp">
      <li><a href="staff.cfm">Staff Directory</a></li>
      <li><a href="../orgchart.pdf">Organization Chart</a></li>
      <li><a href="committees.cfm">Committees of the VCR</a></li>
      <li><a href="units.cfm">Overview of Units</a></li>
      <li><a href="reports_statistics.cfm">Reports &amp; Statistics</a></li>
      <li><a href="Research_Admin_Guidelines.cfm">OVCR Research Administration Guidelines</a></li>
      <li><a href="volunteer.cfm">Volunteer to Help Illinois Research</a></li>
      <li><a href="contact.cfm">Contact Us</a></li>
    </ul>
    <p><a href="#" onClick="javascript:$('#menu_resp').slideToggle(); return false;" id="menu_m">&ndash; Menu &ndash;</a></p>
    <!-- #EndLibraryItem --></div>
      <div class="section">
      <h1>New Researcher Guide </h1>
      <div id="accordion">
       <p><strong>Welcome to the Illinois Research Community!</strong></p>
      <p>Illinois is a large and complex institution, but we hope that you will soon find your way around both the physical and the electronic campus.<br>
       <br>
       Our culture values collegiality and interdisciplinary research, and we hope this page provides the basic information you need to help you launch your own productive research endeavors.<br>
      <br>
               Click on the tabs below for select links and information about the Illinois research community. More detailed information can be found throughout this website - and if you need additional guidance, don't hesitate to <a href="mailto:[email protected]">contact us</a>. </p>
    <h2><a href="#">Find Research Resources</a></h2>
       <div>
      <p>Your college's research office can provide specifics, as individual research needs will vary depending upon your discipline, but the following links may help you find the tools, equipment, and services to achieve your research goals: </p>
      <p><a href="http://research.illinois.edu/units/technology.cfm">Campus research facilities and services</a><a href="http://research.illinois.edu/about/programs-and-resources.cfm"><br>
         Research programs and additional resources</a></p>
      <p>Select items that may be of particular interest to new faculty include:</p>
       <p><a href="http://www.library.illinois.edu/sc">Library research resources (Scholarly Commons) </a><br>
         <a href="http://www.library.illinois.edu/ugl/mc/">Support for producing digital media  (Media Commons)</a><a href="https://ideals.illinois.edu/"> <br>Research Repository (IDEALS)</a><a href="http://itg.beckman.illinois.edu/visualization_laboratory/"><br>
           Modeling, imaging, and graphic design services (Beckman Vis Lab) and</a><a href="http://www.igb.illinois.edu/core">Microscopy services (IGB Core Facilities)</a><a href="http://www.it.illinois.edu/"><br>
           Computing resources (IT Excellence)</a></p>
               </div>
      <h2><a href="#">Find Funding</a></h2>
       <div>
      <p> Your departmental business office can  guide you, but when you are ready to look for funding, the OVCR can help.</p>
      <h4>Internal Funding Resources:</h4>
                            <p>The <a href="http://crb.research.illinois.edu/">Research Board</a> provides support for new faculty to initiate research at Illinois. <a href="http://research.illinois.edu/research/Funding_Opportunities.cfm"><br>
                            Additional Campus Funding Opportunities</a></p>
                            <h4>External Funding Resources:</h4>
                            <p><a href="http://externalfunding.research.illinois.edu/Default.aspx">Limited Submissions</a><a href="https://www.grantforward.com/index"><br>
                              Grant Forward </a></p>
                            <p>The OVCR offers <a href="http://research.illinois.edu/research/support.cfm">additional support</a> to faculty in the humanities, arts, and social sciences<em>. </em></p>
                            <p><em><br />
                            </em> </p>
                          </div>
      <h2><a href="#">Hire Staff</a><br />
      </h2>
      <div>
      <p>Your departmental business office should be able to assist you with personnel needs. There are many different employee classifications, and the hiring process differs significantly depending on the position.</p>
      <p>Visit the Illinois Human Resources <a href="http://humanresources.illinois.edu/index.html">website</a> for more information. <br />
       </p>
         </div>
      <h2><a href="#">Find Collaborators</a></h2>
      <div>
      <p>The University of Illinois at Urbana-Champaign is currently developing a &quot;Faculty Experts Database&quot;<em> -</em> a tool that will showcase faculty expertise and help you to connect with colleagues. We will launch that service in Fall 2013, but in the meantime we encourage you to connect with your department head and senior faculty, and your college's senior administration. They can provide suggestions on connecting with other researchers across campus. </p>
      <p>Additionally, the research   institutes that report to the OVCR are hubs of collaboration and interdisciplinary research on campus: </p>
      <p><a href="http://beckman.illinois.edu/">Beckman Institute for Advanced Science and Technology</a></p>
      <p><a href="http://www.igb.illinois.edu">Institute for Genomic Biology</a></p>
      <p><a href="http://www.ncsa.illinois.edu/">National Center for Supercomputing Applications</a></p>
      <p><a href="http://www.prairie.illinois.edu/">Prairie Research Institute</a><br />
       </p>
                            </div>
      <h2><a href="#">Understand Regulatory Requirements</a></h2>
      <div>
      <p>Supporting the   safe and ethical conduct of research is a priority for the Office of the Vice Chancellor for Research at the University of Illinois at Urbana-Champaign. Review a <a href="http://research.illinois.edu/policies/checklist.cfm">checklist</a> to help you get started, or learn more about research <a href="http://research.illinois.edu/policies/index.cfm">policies</a>and required<a href="http://research.illinois.edu/training/index.cfm"> training.</a><em><br />
       </em> </p>
      </div>
                            <h2><a href="#">Share Your Results</a></h2>
      <div>
      <p>The<a href="http://otm.illinois.edu/"> Office of Technology Management</a> can help you understand the intellectual property issues in research activities and your role in commercializing university innovation. </p>
      <p>The  News Bureau generates and coordinates national news coverage of the Urbana-Champaign campus. News Bureau writers cover <a href="http://news.illinois.edu/about_staff.html">specific campus beats</a> and also provide advice for interacting with the media. </p>
      <p>Many departments and colleges also have communications staff to help share news and research results. Find your unit's &quot;Chief Communications Officer&quot; <a href="http://publicaffairs.illinois.edu/campus/cco.html">here</a>. <em><br />
       </em></p>
             </div>
      <h2><a href="#">People in Research: The Names You Need to Know</a></h2>
                                <div>
      <h4><a href="../orgchart.pdf">OVCR Org Chart</a> </h4>
      <p><a href="http://research.illinois.edu/about/staff.cfm"><br>
         Office of the Vice Chancellor for Research</a><br>
       Peter Schiffer, Vice Chancellor for Research<br>
       Melanie Loots, Executive Associate Vice Chancellor for Research<br>
       Jan Novakofski, Associate Vice Chancellor, Compliance<br>
       Nancy Abelmann, Associate Vice Chancellor for Humanities, Arts, and Related Fields
                                  <br>
                                  Howard Guenther, Associate Vice Chancellor, Research Integrity Officer
      </p>
      <p><a href="http://www.ospra.illinois.edu/">Office of Sponsored Programs</a><br>
       Dave Richardson, Director </p>
      <p><a href="http://irb.illinois.edu/">Institutional Review Board</a><br>
       Anita Balgopal, Director</p>
      <p> <a href="http://www.drs.illinois.edu/">Division of Research Safety</a><br>
       Peter Ashbrook, Director</p>
      <p><a href="http://dar.research.illinois.edu/">Division of Animal Resources</a><br>
       Lyndon Goodly, Director</p>
      <p><a href="http://biomedical.illinois.edu/">Division of Biomedical Sciences</a><br>
       Jennifer Eardley, Interim Director
      </p>
                                </div>
      <p> </p>
         </div>
      <!-- <= end .section -->
      <div class="clear"></div>
      <!-- InstanceEndEditable --> </div>
      </div>
      </div>
      <!-- <= end #content --></div>
    <div id="footer">
      <div class="wrapper">
      <div id="address">
      <p><strong>Office of the Vice Chancellor for Research</strong><br>
      Fourth Floor, Swanlund Administration Building, MC-304<br>
      601 E. John Street, Champaign, IL 61820</p>
      </div>
      <div id="email">
      <p><strong>Email:</strong> <a href="mailto:[email protected]">[email protected]</a><br>
      <strong>Phone:</strong> 217-333-0034<br>
      <strong>Fax:</strong> 217-244-3716</p>
      </div>
      <p id="c">&copy; 2012 Board of Trustees of the <a href="http://illinois.edu/">University of Illinois</a></p>
      </div>
    </div>
    <!-- <= end #footer --> <script src="../scripts/menu.js"></script> <script type="text/javascript" src="http://emergency.webservices.illinois.edu/illinois.js"></script>
    <!-- InstanceBeginEditable name="footer" --><!-- InstanceEndEditable -->
    <div id="modal"></div>
    <script type="text/javascript">
    var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
    document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
    </script>
    <script type="text/javascript">
    try {
    var pageTracker = _gat._getTracker("UA-6127625-1");
    pageTracker._trackPageview();
    } catch(err) {}
    </script>
    </body>
    <!-- InstanceEnd --></html>

Maybe you are looking for

  • Need to Learn ABAP OO and Workflow concepts.

    Hello Mates, I am just a 2 weeks old in Sap - ABAP, I was working on MS-.NET. But somehow ABAP is attracting me more than any other  language, I did certification as well. But somehow I am not able to understand the ABAP OO concepts inregards to work

  • Transaction problem with jconn5.2

    jconn5.2 and iASsp2 I am using Bean Managed Transaction in my application, start the first transaction is fine, but once the application going to start another transaction, errors occoured: "the transaction onwer is not in current thread".

  • X240 Projector Issue

    Hi Guys, X240 will not work correctly on any Mitsubishi Electric XD490U projector. I know this is one of the older projectors we have but I don't understand why it would be playing up. The X240's all work perfectly fine on all our other projectors ju

  • Upgraded to the OS X Yosemite  now email issue

    Hi there, since upgrading my OS.  My imap account won't go online. I get a triangle with ! ....  I've reset it, deleted and reinstalled, double and triple checked the password. And it still won't log in. Thank you

  • Background auto-login at boot

    I have a G5 running Leopard that I'm using as a print server. I would like to set it up to automatically login into a certain account when it boots up-to start up my printer RIP-but I'd like to hide that boot process from any users who happen to be a