.NET Framework - FrontPage Extensions vs Expression Web Extentions

Asked By Templar
24-Dec-09 07:11 AM
Am I correct in thinking that FrontPage Extensions in no way apply to
Expression Web and that when you Publish a website created in Expression Web,
you must not use Frontpage extensions at the server?
--
Templar
Expression Web
(1)
UNIX
(1)
ExtensionsYes
(1)
NoWhile
(1)
Rusynko
(1)
Sitebuilder
(1)
SEEW
(1)
SBR
(1)
  Stefan B Rusynko replied to Templar
24-Dec-09 07:28 AM
No
While EW does not require the FP SE
EW Does support the FPSE if you want/need to use them

--

_____________________________________________
SBR @ ENJOY (-:              [ Microsoft MVP - FrontPage ]
To find the best Newsgroup for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
_____________________________________________


Am I correct in thinking that FrontPage Extensions in no way apply to
Expression Web and that when you Publish a website created in Expression Web,
you must not use Frontpage extensions at the server?
--
Templar
  Templar replied to Stefan B Rusynko
24-Dec-09 09:12 AM
What is SE?

Will EW work with UNIX at the server?   I was told EW actually performs
better with UNIX.

Thanks
--
Templar
  Stefan B Rusynko replied to Templar
25-Dec-09 07:55 AM
SE - Server Extensions
Yes you can use EW on a server running under UNIX
- probably w/o the FP SE since most Unix hosts no longer support the FP SE

--

_____________________________________________
SBR @ ENJOY (-:              [ Microsoft MVP - FrontPage ]
To find the best Newsgroup for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
_____________________________________________


What is SE?

Will EW work with UNIX at the server?   I was told EW actually performs
better with UNIX.

Thanks
--
Templar
Create New Account
help
I am going to describe here is not a new problem. I experienced it when Expression was in Beta, then free trial and Expression version 1. I am now Expression Web 3. The web site was original created with Front Page 98, then FP 202 and FP203. Now I publish with Expression Web, no FP extensions, using FTP. I have a domain with several sub-webs, each it is own folder which is defined as a web. All pretty much the same. They are created as a folder are photo scrap books
site was easy. I cannot figure out how to do it with EW3. Help? Carl Expression Web Designer Discussions Expression Web (1) Front Page (1) Linux (1) OKAre (1) DWTs (1) PageFrames (1) FireFox (1) ColumnChoose with all the bookmarking, navigation and search engine problems they have? - - Ron Symonds Microsoft MVP (Expression Web) http: / / www.rxs-enterprises.org / fp Reply only to group - emails will be deleted unread visitors. You sound like you have some time on your hands:) see if this helps Expression Web Dynamic Web Templates Ebook http: / / any-expression.com / expression-web / ebooks / expression-web-dwt-ebook
Styles .NET Framework When I first rec'd Expression Web and read up on it, I somewhat understood the STYLES and DWT's but not well enuf to apply them in the timeframe required to get the web site up and running. Therefore I did a few things a little screwy- -i think need to reread / reread STYLES / DWT's and clean up my act. In meantime, my web page is full of STYLES in the page HEAD section to include STYLES embedded in the BODY of the web page due to copying and pasting text from various sources into the web page. Page is http: / / www.bladenonline.com. While I am rereading / rereading the STYLES / DWT section of the manual I purchased, is there a way to clean up the web page as is? It appears that when I paste in text and then delete the text the formating is inserted and deleted from the BODY of the web page. However, the STYLE section added to the HEAD section of the web page is
expressions are evaluated only for their side effects. You can create a statement from an expression by placing a statement terminator (semicolon) after it. Any value returned by the expression is discarded. For example, the following code shows an expression statement. It consists of the assignment expression (an assignment operator and two operands) followed by a semicolon. This does the following two things: = 95 The expression assigns the value on the right of the operator to the memory location referenced by statement, this is considered the side effect. = 95 After setting the value of x, the expression returns with the new value of x. But there is nothing to receive this return states is that if we have a statement like = 91x = 3D 10; = 92 then an expression is the whole statement and not just the part on the right side of an assignment operator? b) If the whole statement is considered an expression, then why would assignment be considered a side effect and not the = 93main effect = 94
regular expression NxM .NET Framework Hi, I am using following regular expression to validate picture size take as input (either an integer or NxM where N and M are integers). ( \ d+) | ( \ d+ \ s*[Xx] \ s* \ d+) This regular expression is working fine in perl as intended but not in dot net. Please tell me work for you? It works fine for me. Assuming you are actually using literally that expression, the only thing that comes to mind is incorrect escaping of the backslash character. But not be hard to fix by oneself. See below for a short example of your expression in a concise-but-complete code example that works correctly for me. If the problem Success ? "valid" : "INVALID"); } } } } s* \ d+)"); }", strInput, Thanks you for your response. I was using that expression in RegularExpressionValidator for asp.net page, as it is. It appears regular expression OR " | " operator does not work in RegularExpressionValidator control. So I changed the regular expression to following equivalent: \ d+([Xx] \ d+)? Thanks you. Regards, Anees Haider Hi Anees, At first