 |
 |
Index ‹ Web Programming ‹ Frontpage Client
|
- Previous
- 1
- 2
- 3
- ASP.Net >> possible to render into the <HEAD> section?I want to render this text into the <HEAD> section of a page (and perhaps
mute any existing title declaration, or alter it to be this instead) -
<title runat="server" id=HtmlTitle></title>
It seems Render only sends items into the <BODY>.
Actually, it would be nice if I had control over the entire rendering
process, including the whole <HEAD>.
It what I want to do possible?
Paul
- 4
- Frontpage Programming >> Programming ActiveX ControlsFrontPage 2002, Win XP Home. Having added an ActiveX control to a page
what's the easiest way of:
1) browsing its properties, methods and events ?
2) programming its events?
I've got Microsoft Script Editor and Visual InterDev but haven't used them. I
also read on the internet about Microsoft's ActiveX Control Pad which sounded
useful but the info was dated 1997 so it's probably old technology.
Thanks for any advice,
Rob Rutherford
- 5
- IIS >> sc-status checked, but not being trackedHi everyone!
I have a very peculiar problem. sc-status has been
checked to be included in the server logs, but that field
has not been being tracked for the last 3 years. I wanted
to use URCHIN to analyze the server logs, but because
it's missing this field, the software can't read my log
files. So ....
a) Does anyone have an explanation as to why sc-status
would not get tracked even though it has been checked off?
b) Does anyone know of a comparable product to URCHIN for
corporate log analysis - I know of Web Trends, but I'm
trying to find a comparable solution.
Thanks in advance for your help!
- 6
- ASP.Net >> how to deal with this SQLExceptionHello,
I have written code in ASP.net 2.0 to insert the values in a SQL
Server Database. the code is as follows
Dim addemp As System.Data.SqlClient.SqlCommand = New
System.Data.SqlClient.SqlCommand("INSERT INTO Department
(department_name,lastname,firstname,title,hiredate,reportsto,photo)
values(@departmentname,@lastname,@firstname,@title,@hiredate,@reportsto,0x0);"
& "SELECT @identity=SCOPE_IDENTITY();" & "SELECT @pointer=TEXTPTR(photo) from
department where department_id=@identity", con)
Now the SQLException is raised as :
'SCOPE_IDENTITY' is not a recognized function name.
I want to know if the syntax of the above statement is correct or not also
how to deal with this exception
Thank you
- 7
- Frontpage Client >> Search engine optimizationHello all!
My question today regarding search engine optimization is: I have noticed
some sites "source code" have the following:
meta name="robots" content="index, follow"
or
meta name="robots" content="all"
Was is the difference between these two and how does it affect the way my
website is indexed?
Also, I have noticed some site have the following:
meta name="revisit-after" content="15 days" (or "30 days")
What is the significants of this tag?
Thanks,
Henry Contreras
- 8
- Frontpage Client >> Fed Up with Frontpage FormsHi,
I used to recommend using FrontPage forms but now I see they are NOT
secure at all as far hiding your e-mail address. The e-mail is right
there in the code for spammers to pluck.
I have started making fields required to stop automated hackers from
hijacking the forms, but your e-mail address is still not hidden from
view.
So does anyone know a way to stop the e-mail address from appearing in
the page code? Or is there a good alternative to FP forms?
---------------------------------------------------
.~ ~ Reesa Marchetti, Webmaster-Editor (856) 881-6000 USA
`O O^ Sheer Web Design: http://sheerwebdesign.com
.< http://relivethe80s.com · http://reesa.org
.^^
- 9
- IIS >> Using Basic and NTLM authenticationI'm using both basic and NTLM authentication. I need to be able to limit who can use bsic authentication. I would like to be able to do this based off of source IP addresses. I have some caches that are pre-loading content and they can only use basic authentication. Is there a way to say that only the caches (based on source IP) can access the content via basic authentication. I'm able to do this on a user basis (only adding the one user to basic authentication) but I also need to be able to do this on a device basis preferably source IP address
Thanks in advance for your help.
- 10
- Frontpage Client >> Updates not displaying on my computerWhen I update my site using FP2000 the OLD version seems to be stuck on my computer but displays the changes on others. Have tried all the usual tricks; DISK CLEANUP, DELETE FILES, even SYSTEM RESTORE to 2 months before I ever built the site. How (or where) do I get rid of the tag-along file?
- 11
- ASP.Net >> Position of dynamically added controlsI have some code which adds controls to a placeholder. The button and label
however always appears above the dynamically added content when the actual
tags are below. Why is this. I want them to appear below as it really messes
with my plans for assessiblity. What am I doing wrong. Regards.
Dim Form1 As New HtmlForm
Form1 = Page.FindControl("form1")
Dim masterplaceholder As PlaceHolder = New PlaceHolder
masterplaceholder = Page.FindControl("plformgroup")
Form1.Controls.Add(masterplaceholder)
Dim txt As TextBox = New TextBox
masterplaceholder.Controls.Add(txt)
<form id="form1" runat="server">
<div>
<asp:PlaceHolder ID="plformgroup" runat="server"></asp:PlaceHolder>
<asp:Label ID="lblstatus" runat="server"></asp:Label>
<asp:Button ID="Button1" runat="server" Text="Button" />
</div>
</form>
- 12
- ASP.Net >> Datalist and RowSelectorColumnI have been using Andys RowSelectorColumn control for awhile now and it
works great.
I now need a way to put a button on a datalist datalistitem (as opposed to a
datagriditem). The problem is that Andys control is for columns and it
doesn't work on Datalist which has no columns per se.
The Datalist has the same problem as the DataGrid in that radio buttons
don't work.
Is there some way to make radiobuttonlists work or is there a control out
there similar to RowSelectorColumn that would give me the same
functionality?
Thanks,
Tom
- 13
- Frontpage Client >> Database search fieldsI tried to add the '::hiddenfield::' into my html, but
FrontPage kept overwriting it. Is there a way I can stop
FrontPage from overwriting my changes or am I just doing
something wrong?
Nicki, the easiest way to do this is to add a hidden form
field in your search form and change the query to test
for a blank entry
('' is two single quotes)....
SELECT * FROM TableName Where (... your query...)
OR '::hiddenfield::' = ''
<input type="hidden" name="hiddenfield" value="true">
If your form has only one search field, you can use it to
test for a blank.
OR '::searchfield::' = ''
--
Stephen Travis
Microsoft MVP - FrontPage
"Nicki" <snatrott@yahoo.com> wrote in message
news:006d01c34322$fe9b3740$a501280a@phx.gbl...
> Can I display all the records in a database and include
a
> search field? I already have a search field, but it
> doesn't show any records until you enter text to search
> for. I want to start with a view of the whole database,
> and have users narrow down the options by using the
> search fields. Can I do that?
.
- 14
- Frontpage Client >> Update formsHey Guys, I need to create a form that the end user can update and pres
SUBMIT and the results will remain in the updated TEXT BOX.
Any Ideas?
Thank
-
utradesho
-----------------------------------------------------------------------
Posted via http://www.forum4designers.co
-----------------------------------------------------------------------
View this thread: http://www.forum4designers.com/message442117.htm
- 15
|
| Author |
Message |
matthewzammit

|
Posted: Tue Dec 28 15:11:02 CST 2004 |
Top |
Frontpage Client >> Can't upload subwebs
For some reason I can't upload subwebs that I create from existing folders.
Why is this?
Web Programming24
|
| |
|
| |
 |
Jaye

|
Posted: Tue Dec 28 15:11:02 CST 2004 |
Top |
Frontpage Client >> Can't upload subwebs
Are you sure you checked the "include subwebs"?
"Nathan" wrote:
> For some reason I can't upload subwebs that I create from existing folders.
> Why is this?
|
| |
|
| |
 |
Chris

|
Posted: Tue Dec 28 20:46:42 CST 2004 |
Top |
Frontpage Client >> Can't upload subwebs
do you get an error or permissions message, what are the symptoms?
--
Chris Leeds,
Microsoft MVP-FrontPage
ContentSeed: great tool for web masters,
a fantastic convenience for site owners.
http://contentseed.com/
--
"Nathan" <EMail@HideDomain.com> wrote in message
news:EMail@HideDomain.com...
> For some reason I can't upload subwebs that I create from existing
folders.
> Why is this?
|
| |
|
| |
 |
Nathan

|
Posted: Wed Dec 29 07:15:02 CST 2004 |
Top |
Frontpage Client >> Can't upload subwebs
I converted a folder to a subweb. Now when I try to upload it (file, publish,
etc) it doesn't work. Nothing transfers to my online site.
"Chris Leeds, MVP-FrontPage" wrote:
> do you get an error or permissions message, what are the symptoms?
>
> --
> Chris Leeds,
> Microsoft MVP-FrontPage
>
> ContentSeed: great tool for web masters,
> a fantastic convenience for site owners.
> http://contentseed.com/
> --
> "Nathan" <EMail@HideDomain.com> wrote in message
> news:EMail@HideDomain.com...
> > For some reason I can't upload subwebs that I create from existing
> folders.
> > Why is this?
>
>
>
|
| |
|
| |
 |
Chris

|
Posted: Wed Dec 29 08:28:45 CST 2004 |
Top |
Frontpage Client >> Can't upload subwebs
no problem,
you'll have to make sure the publish web dialog box has the "publish
subwebs" checkbox checked.
what version of FrontPage are you using?
--
Chris Leeds,
Microsoft MVP-FrontPage
ContentSeed: great tool for web masters,
a fantastic convenience for site owners.
http://contentseed.com/
--
"Nathan" <EMail@HideDomain.com> wrote in message
news:EMail@HideDomain.com...
> I converted a folder to a subweb. Now when I try to upload it (file,
publish,
> etc) it doesn't work. Nothing transfers to my online site.
>
> "Chris Leeds, MVP-FrontPage" wrote:
>
> > do you get an error or permissions message, what are the symptoms?
> >
> > --
> > Chris Leeds,
> > Microsoft MVP-FrontPage
> >
> > ContentSeed: great tool for web masters,
> > a fantastic convenience for site owners.
> > http://contentseed.com/
> > --
> > "Nathan" <EMail@HideDomain.com> wrote in message
> > news:EMail@HideDomain.com...
> > > For some reason I can't upload subwebs that I create from existing
> > folders.
> > > Why is this?
> >
> >
> >
|
| |
|
| |
 |
| |
 |
Index ‹ Web Programming ‹ Frontpage Client |
- Next
- 1
- 2
- Frontpage Client >> jumbled web page layout when viewed or designed on one computer but not othersI am working on my web site on my laptop. My laptop is giving me trouble so I went to switch to my PC with 17 in monitor. When I view my web site from the PC the pages have jumbled layout and yet neither my laptop viewing or on my friends computer shows the website to be jumbled. I tried designing a web page on my PC but when I uploaded it the web page was jumbled on everyone elses but mine! I have tried every setting I can think of but nothing has changed the jumble. I have tried changing the screen resolutions as well, from less to more and 16 bit and 24 bit. Please can anyone tell me what to "fix" so my PC won't displayed jumbled (funny thing is it only jumbles MY web site pages and no other web sites!
Thank you for any help you can offer
Sherry
- 3
- Frontpage Client >> database informationI am using FP 2003. I have set up a database using FP the decided to add
information that was on excel page. how would I send the information from
excel (or access) to the database so it shows up in a search.
- 4
- Frontpage Client >> FP 2002 - duplicating shared borders when importedHi - I have recently imported two sites from a server to
different local PCs (XP). The imported pages, when opened
in the Page view of FP2002 (created in same), duplicate
the shared borders (every time the page is opened). I
corrected the first incident by creating a new index page,
copying and pasting and replacing the old one with it, and
reconnecting all the pages to it to rebuild the nav. Is
there an easier way to fix this? All currently available
updates to the software and OS have been installed.
Thanks -
- 5
- Frontpage Client >> Collapsable outline with +/- and selection retentionI'm using the collapsable outline feature in MS FP 2002. I have two
problems:
1. There are no +/- symbols to let the user know when there is a
collpased subheading that can be expanded.
2. When an entry in the outline is a link to another page and that
link is clicked, the selection of that entry is lost when the user clicks
the "Back" button on his browser to return to where he was on the outline.
Is there any easy cure that doesn't involve a lot of programming knowledge?
Any guidance would be very much appreciared.
- 6
- Frontpage Client >> Error 80070070 in ASP pageHi I am getting the above error message as
'80070070'
/dir/page_name.asp, line 799
Can anyone help as it's difficult to tell what is on line 799 as it does not
relate to the actual line of code when I view it possible due to shared
borders etc..
Thanks M
--
http://www.MettaWeb.com
- 7
- 8
- ASP/Active Server Pages >> Invalid Prog IDSomeone could help me on this code:
<%
if isAdmin then
set Upload = Server.CreateObject("PersitsUpload.1")
p_count = Upload.Save("d:\inetpub\wwwroot")
p_news_id = cint(Upload.form("p_news_id"))
p_news_cat_id = cint(Upload.form("p_news_cat_id"))
p_news_headline = cstr(Upload.form("p_headline"))
p_news_blurb = cstr(Upload.form("p_blurb"))
p_news_url = cstr(Upload.form("p_url"))
p_existing = cstr(Upload.form("p_existing"))
if p_count = 1 then
p_subfile_name = Upload.Files(1).Path
p_subfile_name = replace
(p_subfile_name, "d:\inetpub\wwwroot\", "")
fileUploaded = TRUE
else
fileUploaded = FALSE
end if
--
The error message from ASP IS:
Error Type
Server Object, ASP 0177 (0x800401F3)
Invalid Prog ID
--
I registered in command line such as follow:
"regsvr32 d:\aspemail\aspUpload.dll" but, it didn't work.
Is lacking anything else?
Gratefull
Charles Vaz
- 9
- Frontpage Client >> foldersi didn't want to have a list a mile long so i created folers inside of
frontpage2002(right click). when i start adding pages to these folders i see
this
_overlay/ themeimage/picture
not linked.
should i not be making folders in my site like this?
should i give every section a subweb (myweb) folder?
why are these overlays not linking?
- 10
- Frontpage Client >> Switching from FP 2002 to FP 2003I have been using FP 2002 and have just purchased FP 2003....I will open the
sites in FP 2003.....is their anything i need to know about opening and
republishing my sites after making changes with FP 2003? I did not feel like
WEb Expressions would be right for me....sounds like a lot of the features
that i liked in FP are not in WE
- 11
- Frontpage Programming >> Database Results, Frames and printingI created a database results region with a search field. What I need to
end up with is the search results can be printed wihtout the search fields
on top. I've tried putting hte search in the top framd and the results in
the bottom frame but then it doesn's work. Any one know of a way I an have
the results in the bottom frame or have the result with a print button that
would then open in a new windows formated for printing?
Thanks.
- 12
- 13
- IIS >> How is IIS Updated?We have a web application, for which we are planning to require IIS
6. My question is if we have users who have 5, how can they upgrade
to 6. I thought I read somewhere that there are no longer separate
downloads after 4.0 as IIS is now part of Operating System
distributions.
If that is the case, is there any way to determine what versions of
IIS shipped with what Operating Systems? Maybe we need to make a
certain Operating System the requirement instead.
Any points to information or other guidance is GREATLY APPRECIATED!
Thanks!!
- 14
- ASP.Net >> replace stringif the user input data and it's only allow two precision
e.g
xxx.xx
but it doesn't allow
xxx.xxx or more
how can i detect it is two precision in code-behind
- 15
- Frontpage Programming >> Hover buttonWhat could I be doing wrong that the Hover Button will
not work in the Preview but everything appears fine in
normal and html. I must be missing something obvious.
Does this relate to the discussion about Virtual Java
Machine?
|
|
|