Link to home
Start Free TrialLog in
Avatar of vbnetcoder
vbnetcoder

asked on

add js file to asp.net web app

I have a .js file how would i add it to my asp.net web app?
Avatar of Seven price
Seven price
Flag of United States of America image

try this

http://msdn.microsoft.com/en-us/library/bb398930.aspx

or
  <script type="text/javascript" src="../.js">
 
Avatar of vbnetcoder
vbnetcoder

ASKER

The third part control told me to do this

src="insertYourPath/tinymce/jscripts/tiny_mce/tiny_mce.js" ></script>


I inserted my path but it tells me that it can not be found.....

Are the slashes supposed to go like this / ?
It works when i do it in textpad like this:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr">

<head>
<script type="text/javascript" src="C:\Users\Troy\Documents\Visual Studio Projects\icocentre\tinymce\jscripts\tiny_mce\tiny_mce.js" ></script >
<script type="text/javascript">
tinyMCE.init({
        mode : "textareas",
        theme : "advanced",
        plugins : "emotions,spellchecker,advhr,insertdatetime,preview",
               
        // Theme options - button# indicated the row# only
        theme_advanced_buttons1 : "newdocument,|,bold,italic,underline,|,justifyleft,justifycenter,justifyright,fontselect,fontsizeselect,formatselect",
        theme_advanced_buttons2 : "cut,copy,paste,|,bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,anchor,image,|,code,preview,|,forecolor,backcolor",
        theme_advanced_buttons3 : "insertdate,inserttime,|,spellchecker,advhr,,removeformat,|,sub,sup,|,charmap,emotions",      
        theme_advanced_toolbar_location : "top",
        theme_advanced_toolbar_align : "left",
        theme_advanced_statusbar_location : "bottom",
        theme_advanced_resizing : true
});
</script>
</head>
<body>
        <form>  
        <textarea name="content" cols="50" rows="15" > 
        This is some content that will be editable with TinyMCE.
        </textarea>
        </form>
</body>
But it does not work in asp.net like this:


<%@ Page Language="VB" AutoEventWireup="false" CodeFile="TEST.aspx.vb" Inherits="TEST" %>

<!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 runat="server">
<script type="text/javascript" src="C:\Users\Troy\Documents\Visual Studio Projects\icocentre\tinymce\jscripts\tiny_mce\tiny_mce.js" ></script >
<script type="text/javascript">
tinyMCE.init({
        mode : "textareas",
        theme : "advanced",
        plugins : "emotions,spellchecker,advhr,insertdatetime,preview",
               
        // Theme options - button# indicated the row# only
        theme_advanced_buttons1 : "newdocument,|,bold,italic,underline,|,justifyleft,justifycenter,justifyright,fontselect,fontsizeselect,formatselect",
        theme_advanced_buttons2 : "cut,copy,paste,|,bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,anchor,image,|,code,preview,|,forecolor,backcolor",
        theme_advanced_buttons3 : "insertdate,inserttime,|,spellchecker,advhr,,removeformat,|,sub,sup,|,charmap,emotions",      
        theme_advanced_toolbar_location : "top",
        theme_advanced_toolbar_align : "left",
        theme_advanced_statusbar_location : "bottom",
        theme_advanced_resizing : true
});
</script>
    <title>TEST</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <textarea name="content" cols="50" rows="15" > 
        This is some content that will be editable with TinyMCE.
        </textarea>
    </div>
    </form>
</body>
</html>
ASKER CERTIFIED SOLUTION
Avatar of Seven price
Seven price
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ty