| Gridview bound to Datatable. Update doesn't work, need help |
|
 |
Index ‹ Web Programming ‹ ASP.Net
|
- Previous
- 1
- ASP.Net >> Compiling directories in web project...In vs.net 2005 you can build the entire website, entire solution or a single
page. The project I am working on has more than 1000 pages spread over 50-60
directories. We work on one or two of the directories most of the time.
When an external dependency is changed (say a function in business layer),
we have to compile the entire web project, which takes a lot of time because
vs.net compiles all 60 directories.
What is need is an option to just compile one directory (to minimize the
development time).
Is this possible? I could not find an option to do this in vs.net 2005.
Also, if it is not directly possible, is it possible to do it by writing a
macro or build script? Any pointers will be appreciated.
Thanks
--
-jojobar
- 2
- IIS >> Finding the cause of session end...suggestions?I'll try to keep this short:
.NET 2.0 C#/ASP.NET web app that calls a dozen, or so, web services.
Web app and most web services hit SQL Server as well. The web app uses
a few session variables and, even though I don't think this was a good
idea, a few of the webservices use session variables as well.
Specifically the .NET cookie, cookieContainer, and cookieCollection
objects so that the webservice is aware of its caller each time it is
called.
The problem we are running into is that the session variables in the
web app are ending way sooner than we specify in the web app's
web.config sessionState timeout value. We'll have it set for 3 hours,
and about an hour would pass and it dies. FYI the web app uses forms
authentication with a timeout of 3 hours and a slidingExpiration set
to 'true'. The sessionState timeout is set to 2 1/2 hours in the
theory that session should end before forms auth so the user doesn't
have to keep re-entering their login credentials.
Now my question is this: is it possible that, when the web app calls
one of the webservices that use session variables, those session
variables somehow become part of the same pool of session variables
that the web app/IIS manages and, if some error occurs in the
webservice, the session variables clean out and bubble-up, so to
speak, and unwantingly clean out the web application's session
variables?
My other suspicion is that IIS is actually killing my session
unknowingly. But which event is causing it, I'm not sure. The reason I
am suspicious of this is that recently we thought we had this problem
beat when we turned off the 'Idle Timeout' property in IIS's
application pool properties section. We had a single user license
complaining that when they came back from their 20 minute lunch, their
session would get wiped out. Once we removed/raised it, that fixed it.
We tested it and proved it every time. Now that has me wondering, what
other IIS events wipe out the session unknowingly? 'Enable CPU
monitoring' is off, 'Request queue limit' doesn't seem to bother me,
'Enable rapid fail protection' is off, 'Enable pinging' is on/default.
Are there others?
One last thing we were thinking of trying was to literally (and
primitively) write an error log for each web method to log safe entry
and exit to try and find a pattern. But I'm hesitant because of the
fact that it is possible that IIS could be the culprit and cleaning up
sessions at different times.
Is there any other suggestions/advice/tools someone can give to help
me get to the root cause of this problem?
Thank you for your time.
- 3
- ASP.Net >> Attach HTML to TableHello
How can i attach an html file to TableRow in HtmlTable
control that run at server, the code should be in server
side.
thanks
- 4
- 5
- ASP.Net >> Line break VB.NETUsing VB.Net and ASP.Net 1.1
Here is a VERY simple MS Access database request.
How can I get a line break between the name, address, & city fields when
they are written?
& vbCrLf _ returns an error of " End of statement expected."
<%@ Page Language="VB" %>
<%@ Import Namespace="System.Data.Oledb" %>
<script runat="server">
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
Dim DBConnection As OledbConnection
DBConnection = New OledbConnection("Provider=Microsoft.Jet.Oledb.4.0;" & _
"Data Source=C:\Inetpub\wwwroot\Experiment.mdb" )
DBConnection.Open()
Dim DBCommand As OledbCommand
DBCommand = New OledbCommand("SELECT * FROM table1, Experiment")
Dim SQLString AS String
SQLString = "SELECT * FROM Table1"
DBCommand = New OleDBCommand(SQLString, DBConnection)
Dim DBReader AS OledbDatareader
DBReader = DBCommand.ExecuteReader()
While DBReader.Read()
Response.Write("Name is " & DBReader("Name"))
Response.Write(DBReader("Address1"))
Response.Write(DBReader("city"))
End While
DBReader.Close()
DBConnection.Close()
End Sub
</script>
</head>
<body>
<form id="form1" runat="server">
</form>
</body>
</html>
- 6
- ASP.Net >> trying to change the culture in an IHttpModuleThis is a multi-part message in MIME format.
------=_NextPart_000_0232_01C61470.38996EF0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
I'm trying to write a multilingual web site where the user could choose =
his language explicitely.
I have 2 flag, the user could click on the flag to change the culture.
The core of the logic goes in an HttpModule:
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
public class LangModule : IHttpModule
{
public void Dispose() {}
public void Init(HttpApplication application)
{
HttpContext context =3D application.Context;
HttpCookie lc =3D context.Request.Cookies[LangCookieName];
if (lc =3D=3D null)
return;
CultureInfo ci =3D new CultureInfo(lc.Value);
Thread.CurrentThread.CurrentCulture =3D ci;
Thread.CurrentThread.CurrentUICulture =3D ci;
}
public static string LangCookieName =3D "UserSelectedLanguage";
public static void SetLocale(HttpContext context, CultureInfo =
locale)
{
if (locale =3D=3D null)
return;
HttpCookie lc =3D new HttpCookie(LangCookieName, locale.Name);
lc.Expires =3D DateTime.Now.AddDays(360);
context.Response.Cookies.Add(lc);
Thread.CurrentThread.CurrentCulture =3D locale;
Thread.CurrentThread.CurrentUICulture =3D locale;
}
}
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
However that doesn't seems to work, when page are loaded they are =
Page.Culture is always en-AU.
Any idea why is it so?
--=20
I have taken a vow of poverty. If you want to really piss me off, send =
me money.
------=_NextPart_000_0232_01C61470.38996EF0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2900.2802" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY>
<DIV>I'm trying to write a multilingual web site where the user could =
choose his=20
language explicitely.</DIV>
<DIV>I have 2 flag, the user could click on the flag to change the=20
culture.</DIV>
<DIV>The core of the logic goes in an HttpModule:</DIV>
<DIV>=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D</DIV>
<DIV><FONT size=3D2><FONT color=3D#0000ff>public</FONT> <FONT=20
color=3D#0000ff>class</FONT> <FONT color=3D#008080>LangModule</FONT> : =
</FONT><FONT=20
size=3D2><FONT color=3D#008080>IHttpModule<BR></FONT>{<BR><FONT=20
color=3D#0000ff> public</FONT> <FONT =
color=3D#0000ff>void</FONT>=20
Dispose() {}<BR><BR><FONT color=3D#0000ff> =
public</FONT> <FONT=20
color=3D#0000ff>void</FONT> Init(<FONT =
color=3D#008080>HttpApplication</FONT>=20
application)<BR> {<BR><FONT =
color=3D#008080> =20
HttpContext</FONT> context =3D =
application.Context;<BR><FONT=20
color=3D#008080> HttpCookie</FONT> =
lc =3D=20
context.Request.Cookies[LangCookieName];<BR><FONT=20
color=3D#0000ff> if</FONT> (lc =
=3D=3D <FONT=20
color=3D#0000ff>null</FONT>)<BR><FONT color=3D#0000ff> =
return</FONT>;<BR><BR><FONT=20
color=3D#008080> CultureInfo</FONT> =
ci =3D=20
<FONT color=3D#0000ff>new</FONT> <FONT=20
color=3D#008080>CultureInfo</FONT>(lc.Value);<BR><FONT=20
color=3D#008080> =20
Thread</FONT>.CurrentThread.CurrentCulture =3D ci;<BR><FONT=20
color=3D#008080> =20
Thread</FONT>.CurrentThread.CurrentUICulture =3D =
ci;<BR> =20
}<BR><FONT color=3D#0000ff> public</FONT> <FONT=20
color=3D#0000ff>static</FONT> <FONT color=3D#0000ff>string</FONT> =
LangCookieName =3D=20
<FONT color=3D#800000>"UserSelectedLanguage"</FONT>;<BR><FONT=20
color=3D#0000ff> public</FONT> <FONT =
color=3D#0000ff>static</FONT>=20
<FONT color=3D#0000ff>void</FONT> SetLocale(<FONT =
color=3D#008080>HttpContext</FONT>=20
context, <FONT color=3D#008080>CultureInfo</FONT> =
locale)<BR> =20
{<BR><FONT color=3D#0000ff> =
if</FONT> (locale=20
=3D=3D <FONT color=3D#0000ff>null</FONT>)<BR><FONT =
color=3D#0000ff> =20
=
return</FONT>;<BR> =20
<FONT color=3D#008080>HttpCookie</FONT> lc =3D <FONT=20
color=3D#0000ff>new</FONT> <FONT =
color=3D#008080>HttpCookie</FONT>(LangCookieName,=20
locale.Name);<BR> lc.Expires =3D =
<FONT=20
color=3D#008080>DateTime</FONT>.Now.AddDays(360);<BR> =20
context.Response.Cookies.Add(lc);<BR><FONT=20
color=3D#008080> =20
Thread</FONT>.CurrentThread.CurrentCulture =3D locale;<BR><FONT=20
color=3D#008080> =20
Thread</FONT>.CurrentThread.CurrentUICulture =3D =
locale;<BR> =20
}<BR>}<BR></FONT>=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D</DIV>
<DIV><FONT face=3DArial size=3D2>However that doesn't seems to work, =
when page are=20
loaded they are Page.Culture is always en-AU.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Any idea why is it so?</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT><BR>-- <BR>I have taken a vow of =
poverty. If=20
you want to really piss me off, send me money.<BR></DIV></BODY></HTML>
------=_NextPart_000_0232_01C61470.38996EF0--
- 7
- ASP.Net >> DataGrid controlI'm using a DataGrid to display data returned from a database.
I've got a template column which displays the results from several fields.
Within this template column I want to display certain fields but only if the
data in a particular field is not null, but I can't get it to work:
<itemtemplate>
...
<%# If Not IsDBNull(DataBinder.Eval(Container.DataItem, "EditedBy") Then
DataBinder.Eval(Container.DataItem, "EditedBy") & " " &
DataBinder.Eval(Container.DataItem, "DateEdited")
End If %>
</itemtemplate>
How should I do this?
Many thanks for any help.
Alan
- 8
- IIS >> Publising Frontpage WebsiteWhen I'm ready to publish my Frontpage website, does frontpage have to be installed on the server that I'm publishing too?
From http://www.developmentnow.com/g/59_2003_10_0_7_0/inetserver-iis.htm
Posted via DevelopmentNow.com Groups
http://www.developmentnow.com
- 9
- 10
- Frontpage Client >> Web formIs there any MS office product that would enable me to create a web form that
I can intergrate into FP2003 and use a captcha? (Thanks still trying to
figure out how I can do this with either something I already have or a free
form builder) Thanks and Happy New Year!
--
Thanks,,
Kim
- 11
- Frontpage Client >> Correct screen size layoutsIs there an easy/quick way to ensure that a site is
happily viewed by all screen sizes? I have heard of using
tables for this, but have tried this and sometimes it
works, sometimes not.
If someone could please let me know what the general rule
of thumb is for this, I would love to know.
Regards
Tessa
- 12
- ASP.Net >> reloading a user control from within another user contorlHi All:
A very simple question, which I hope has a simple answer:
On page.aspx I have two user controls: part1.ascx and part2.ascx
How can I trigger the reloading of part2.ascx from within part1.ascx?
In other words I would like part1.ascx to contain something like:
if whatever then
reload part2.ascx
End if
Any suggestions will be highly appreciated.
Thanks
TB
- 13
- IIS >> Making a Windows 2000 Webpage LoginHello everyone I dont know if this is the right place to post this
message, but I have a question. I was wondering is there a way that I
can make a webpage that my network users can logon with there username
and password and when they give this info they can go automatically to
there home directory?
The reason behind this is because where I work at we have a bunch of
students and we want to be able to have the kids logon onto our
servers to get there homework and there test scores and so on, but the
school is scared of security issues.
Can someone point me in this direction.
- 14
- Frontpage Client >> Dynamic Template ProblemsI am not a website professional, just someone helping a friend so excuse my
non-technical descriptions.
I helped a friend create a FrontPage 2003 website with a dynamic template.
Everything was good and working like it should. We needed to start doing
updates with a new laptop computer since we were getting rid of the old
desktop one.
So we used the website import wizard to copy the site from the host to the
local laptop PC. This seemed to work okay.
Because updates might need to be done from the old computer too before we
got rid of it entirely, I had her always do a "remote to local" update before
starting work on the site. Then when she was done, she did a "local to
remote."
A couple weeks ago, I had to update using the old PC. So I did a "remote to
local" before I started to update. Right off the bat I noticed there were
now two index files - one with "html" on the end and the other with "htm."
I went ahead and started to update using the most recent one - likely the
one from her computer. The other was probably my old one.
Then I noticed the template was no longer write-protected. It would allow
me to edit it. So, I opened the template file, made a change, and tried to
update, but it said it was only attached to one file - my old index file. It
was no longer attached to the other pages.
I checked on the laptop and the template was also entirely editable there
too.
I have also found that our hosting company uses 2002 extensions if that
helps.
So here are my questions:
1) What happened?
2) How do I prevent it? Will it happen again if we try to use both
computers?
3) Is there someway to easily fix this? (i.e., turn the edges of the pages
back into a template?)
--
Elizabeth W
- 15
- ASP.Net >> User control with eventsI need to make a new user control; it will contain a button and a drop down
list.
Can I make the button click event handling editable by the user, like he can
specify the method that will handle this click event on the hosting page?
|
| Author |
Message |
Saki

|
Posted: Mon Feb 19 08:15:10 CST 2007 |
Top |
ASP.Net >> Gridview bound to Datatable. Update doesn't work, need help
Hello.
I have a Gridview on my webpage. To this gridview, I bind a
datatable. The results are correctly displayed. But after I edit
some values and trigger the [GridView1_RowUpdating] event, the
values [e.NewValues] & [e.OldValues] are empty. What am I doing
wrong?
Thanks in advance.
--
--------------------------------- --- -- -
Posted with NewsLeecher v3.9 Beta 1
Web @ http://www.newsleecher.com/?usenet
------------------- ----- ---- -- -
Web Programming422
|
| |
|
| |
 |
Eliyahu

|
Posted: Mon Feb 19 08:15:10 CST 2007 |
Top |
ASP.Net >> Gridview bound to Datatable. Update doesn't work, need help
By any chance, do you set Visible property for these columns to false?
--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net
"Jaymz" <EMail@HideDomain.com> wrote in message
news:WdiCh.56$EMail@HideDomain.com...
> Hello.
>
> I have a Gridview on my webpage. To this gridview, I bind a
> datatable. The results are correctly displayed. But after I edit
> some values and trigger the [GridView1_RowUpdating] event, the
> values [e.NewValues] & [e.OldValues] are empty. What am I doing
> wrong?
>
> Thanks in advance.
>
>
> --
> --------------------------------- --- -- -
> Posted with NewsLeecher v3.9 Beta 1
> Web @ http://www.newsleecher.com/?usenet
> ------------------- ----- ---- -- -
>
>
|
| |
|
| |
 |
| |
 |
Index ‹ Web Programming ‹ ASP.Net |
- Next
- 1
- 2
- ASP.Net >> simple C# questionwhat is the equivalent in C# to VB's Is Nothing? Check out
the following code snippet:
private SqlConnection objConn;
if (objConn Is Nothing) {
objConn = new SqlConnection(strConnection);
}
I'm converting my coded from vb to C# and I want to
replace objConn Is Nothing with the C# equivalent? I
trried == NULL, but C# doesn't know NULL. Thanks
- 3
- Frontpage Client >> DHTML not working....script errorHi, I am new to frontpage 2003 and was previously using frontpage 2000. I've
been learning and basically taught myself how to design a webpage. I am
currently trying new things to do. On the web I'm working on now (not yet
published) (web was created in FP 2000). I am trying to insert DHTML
animation on some text but I get a message error "Warning: this page contains
scrip(s) that could cause errors when run with the dynamic animation scripts"
Is there anyway to fix this without having to redesign the website from
scratch? Or any way to get around it? Any info would be greatly appreciated
- 4
- IIS >> change the order (not format) of fields in w3c extended log fileHello,
I've just migrated our iis 5.0 finally to a new 2k3 server running iis 6.0
and want to keep the same order of fields in the 6.0 log files as it was with
our 5.0 log files. I think I was able to customize the order with our 5.0
log files but can't remember how I did it. Any help is appreciated. Thanks.
- 5
- IIS >> Sharepoint Services on Win2003 - install error - 'System Error 1057 while trying to query service "SPTimer"''System Error 1057 while trying to query service "SPTimer"'
Looking for some help on an install of Windows Sharepoint Services v.2 on a Windows 2003 Enterprise Server in an NT4 domain (no active directory). Also installed SQL Server 2000 Enterprise SP3a.
Did the install of Sharepoint services from a run command, â??C:\program files\sts2setup_1033\setupsts.exeâ?? remotesql=yes.
Install seemed to go ok.
Sticking point is in attempting to Configure Administrative Virtual Server.
Trying to create a new application pool and supply a configurable user name.
After the install, I minimized this screen, created a new account for this purpose (only User not Admin, local account) (SQL Server and Sharepoint on same box).
I then went into SQL Server Enterprise Manager, created a new Login under Security. Picked of the NT account I had just created and added the Server Roles - Security Administrators, Process Administrators, Database Creators.
Maximized Configure Administrative Virtual Server screen again and tried to use account. Initially got time-out error.
On all subsequent retries I get 'System Error 1057 while trying to query service "SPTimer"'.
There is no SPTimer Service as an NT service.
Have attempted giving that NT ID, Database Access permissions to Master as public and db-owner (matching administrators group). Also tried giving it same permissions to all database. Attempted making it a local administrator on server which would give it all Administrative roles in SQL server 2000.
Still getting same error, trying reboots, stopping and starting IIS, SQL services...
Any insight would be appreciated
- 6
- ASP.Net >> DetailsView looses EditModeHI Group!
I am really getting crazy with my DetailsView. I have the following code
initializing the Page where the DetailsView is in it:
If Session("firmaNr") = 0 Then
Me.dv_firma.ChangeMode(DetailsViewMode.Insert)
Me.dv_kontaktperson.ChangeMode(DetailsViewMode.Insert)
Else
Me.dv_firma.ChangeMode(DetailsViewMode.Edit)
Me.dv_kontaktperson.ChangeMode(DetailsViewMode.Edit)
End If
So my problem is that after a few minutes the DetailsView seems to change
the mode to "Insert" - The user does not recognize this and still has his
button to save the current values. The result is a HTTP Exception that says
"The DetailsView has to be in edit mode..."
Exception Trace:
System.Web.UI.WebControls.DetailsView.HandleUpdate(String commandArg,
Boolean causesValidation)
bei System.Web.UI.WebControls.DetailsView.HandleEvent(EventArgs e, Boolean
causesValidation, String validationGroup)
bei System.Web.UI.WebControls.DetailsView.OnBubbleEvent(Object source,
EventArgs e)
bei System.Web.UI.Control.RaiseBubbleEvent(Object source, EventArgs args)
bei System.Web.UI.WebControls.DetailsViewRow.OnBubbleEvent(Object source,
EventArgs e)
bei System.Web.UI.Control.RaiseBubbleEvent(Object source, EventArgs args)
bei System.Web.UI.WebControls.Button.OnCommand(CommandEventArgs e)
bei System.Web.UI.WebControls.Button.RaisePostBackEvent(String
eventArgument)
bei
System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String
eventArgument)
bei System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler
sourceControl, String eventArgument)
bei System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
bei System.Web.UI.Page.ProcessRequestMain(Boolean
includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
Anyone an idea what's going wrong here..?
best regards
andy
- 7
- 8
- ASP.Net >> PageRequestManagerParserErrorException when using a webpartI'm trying to use jan's wonderful SmartPart from
http://weblogs.asp.net/jan/archive/2007/02.aspx
After trying the Connections Demo from the site and making a connectable
webpart
When using the UpdatePanel i get the error
Sys.WebForms.PageRequestManagerParserErrorException: The message received
from the server could not be parsed. Common causes for this error are when
the response is modified by calls to Response.Write(), response filters,
HttpModules, or server trace is enabled.
Any ideas on how to fis this?
Thanks in Advnace
- 9
- IIS >> Rename IUSR_servername to reflect hostname change on the serverI got a box that originally named 'serverA' and later renamed to
serverB'. The IUSR_servername stays with the old name, IUSR_serverA. I
wanted to change the IUSR_serverA to IUSER_serverB. It seems that I
can't change it like that because the IIS 5.0 will have the
authenication login prompt poping up after the change, suggesting it
is not using the anoynmous login by the renamed IUSR_serverB.
Is there a way to change it so I can minimize some confusion down the
road and maintain some consistency?
Thanks,
Bill
- 10
- ASP.Net >> Change css element with C#I need to change the css element with C# on the server side, how do I do
that?
I need to change the following:
.reportviewercss
{
display: inline;
}
to
.reportviewercss
{
display: none;
}
- 11
- 12
- ASP.Net >> Need help with ItemCommand eventI have on the same page this code:
<script language="VB" runat="server">
...
...
Private Sub subDatagrid_ItemCommand(ByVal source As Object, ByVal e As
System.Web.UI.WebControls.DataGridCommandEventArgs) Handles
subDatagrid.ItemCommand
...
End Sub
...
...
</script>
<ASP:DataGrid id="subDatagrid" runat="server"
AllowSorting="False"
...
...
I have this error:
Handles clause requires a WithEvents variable
at this line: Private Sub subDatagrid_ItemCommand(ByVal source As Object,
ByVal e As System.Web.UI.WebControls.DataGridCommandEventArgs) Handles
subDatagrid.ItemCommand
If I add this line in top:
Protected WithEvents subDatagrid As System.Web.UI.WebControls.DataGrid
I have this error:
'subDatagrid' is already declared as 'Protected Dim subDatagrid As
System.Web.UI.WebControls.DataGrid' in this class.
What is the problem?
Can you help me please?
Thanks
- 13
- IIS >> repost: IIS errorI posted this to this newsgroup, then to the classic ASP group, last week,
and have not been able to solve this, so I'm asking again, in case someone
with the answer didn't happen to catch it last time it was posted.
I use to always be able to view my local ASP pages at http://localhost, but
a few days ago, it started giving me the following notice in the browser:
===================
Server Application Error
The server has encountered an error while loading an application during the
processing of your request. Please refer to the event log for more detail
information. Please contact the server administrator for assistance
==================================================
I assume that something is up with IIS, but I don't know where to look. It
happens on each and every ASP page I try to view. I haven't changed
anything, haven't put up any Microsoft patches or anything. I suspect
spyware. I run the usual anti-spyware/adware programs quite often, and catch
one or two items just about every time. That dang Winfixer came in a couple
weeks ago, and it was pretty nasty, but I digress.
This happens in both IE and FF. I am on WinXP SP1
Anyone seen this error before?
For the record, I have friendly errors turned off in IE.
I went to the event viewer, and the Application and Security showed nothing
whatsoever. The System one showed two things:
*****************************
Event Type: Error
Event Source: DCOM
Event Category: None
Event ID: 10004
Date: 8/25/2005
Time: 8:29:46 PM
User: N/A
Computer: WXP
Description:
DCOM got error "The request is not supported. " and was unable to logon
.\IWAM_WXP in order to run the server:
{3D14228D-FBE1-11D0-995D-00C04FD919C1}
For more information, see Help and Support Center at
http://go.microsoft.com/fwlink/events.asp.
***************************
Event Type: Warning
Event Source: W3SVC
Event Category: None
Event ID: 36
Date: 8/25/2005
Time: 8:29:46 PM
User: N/A
Computer: WXP
Description:
The server failed to load application '/LM/W3SVC/1/ROOT'. The error was
'The server process could not be started because the configured identity is
incorrect. Check the username and password.
'.
For additional information specific to this message please visit the
Microsoft Online Support site located at:
http://www.microsoft.com/contentredirect.asp.
For more information, see Help and Support Center at
http://go.microsoft.com/fwlink/events.asp.
**************************
I'm guessing it could be the username and password thing, but I don't know
where to go from here. The pages are not database-connected; just basic ASP.
So I guess IIS must need a name and password. This is the first time I've
ever heard of this.
- 14
- Frontpage Client >> password protected webpagesHello, I have a website up and running and would like to create an area for employees only, preferrably were they must enter a password and or id to enter. How can I create this in FP 2000?
PS. I may have cross posted same question but forgot my subject words to locate it.
thank you.
- 15
- Frontpage Client >> publishing siteI just got fp 2003 and imported my existing site into front page. Now when I
try to "publish" it, I can't get anything going. Use http deal and my
server has enabled fp extensions. Should I just start over and create a new
site?
|
|
|