Showing posts with label time. Show all posts
Showing posts with label time. Show all posts

Saturday, March 31, 2012

There are so many bugs in the template of "Time Track"

There are so many bugs in the template of "Time Track", an error occured while I want to try delete a project in the project list page.

Error meesage as follows:

Server Error in '/Sample' Application.

Item has already been added. Key in dictionary: 'Id' Key being added: 'Id'

Description:An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details:System.ArgumentException: Item has already been added. Key in dictionary: 'Id' Key being added: 'Id'

Source Error:

Line 44: Protected Sub ListAllProjects_RowDeleting(ByVal sender As Object, ByVal e As GridViewDeleteEventArgs) Handles ListAllProjects.RowDeletingLine 45:Line 46: e.Keys.Add("Id", ListAllProjects.Rows(e.RowIndex).Cells(0).Text)Line 47: Line 48: End Sub


Source File:c:\inetpub\wwwroot\Sample\TimeTracker\Project_List.aspx.vb Line:46

Stack Trace:

[ArgumentException: Item has already been added. Key in dictionary: 'Id' Key being added: 'Id'] System.Collections.Hashtable.Insert(Object key, Object nvalue, Boolean add) +2836739 System.Collections.Hashtable.Add(Object key, Object value) +11 System.Collections.Specialized.OrderedDictionary.Add(Object key, Object value) +49 Project_List_aspx.ListAllProjects_RowDeleting(Object sender, GridViewDeleteEventArgs e) in c:\inetpub\wwwroot\Sample\TimeTracker\Project_List.aspx.vb:46 System.Web.UI.WebControls.GridView.OnRowDeleting(GridViewDeleteEventArgs e) +133 System.Web.UI.WebControls.GridView.HandleDelete(GridViewRow row, Int32 rowIndex) +604 System.Web.UI.WebControls.GridView.HandleEvent(EventArgs e, Boolean causesValidation, String validationGroup) +1155 System.Web.UI.WebControls.GridView.RaisePostBackEvent(String eventArgument) +199 System.Web.UI.WebControls.GridView.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +7 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +11 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +174 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +5102

When you add a item to a HashTable you can't have the same key, in your case all items that will be added to your Hashtable will have the "Id" as a key, make sure the key value is unique.
I knew the database constraint. I just want to say the "Time Tracker" has many bugs. Because I have not change anything in the project list page and database object.

There are too many people accessing the Web site at this time.

What resource have I exhausted if a remote client gets the following message?

"The page cannot be displayed
There are too many people accessing the Web site at this time. "You've exhausted IIS. If you're running Windows XP or Windows 2000 Professional, your IIS process can only handle 10 concurrent connections (at the same time). This is by design and you cannot change this, although with XP you can disable HTTP keep-alives in the properties of the
Web site. When you do this, a limit of 10 concurrent connections still exists, but IIS does not maintain connections for inactive users.

If more than ten connections are needed, you will need to upgrade to one of Microsoft's server platforms.

Wednesday, March 28, 2012

Third-party Grid recommendation?

Hello,
I've been using the datagrid, but now I need to sort
on the columns, and I really want to do this on the client
to save performance time.
I had a third-party grid I used in ASP that worked great, but it was
difficult to work with.
So my list of requirements are simply:
-- Sort by column (which implies that it'll be scrollable)
-- Ease of use.
-- Don't mind if it's reasonably priced, but I probably
don't want a ton of features if that's going to complicate things.
-- agreeable to my hosting company.
Anybody want to offer some experiences?
Thanks,
Jim
*** Sent via Developersdex http://www.examnotes.net ***
Don't just participate in USENET...get rewarded for it!Check out the Infragistics controls. Your host won't mind because they are
native .NET objects. A little pricey, but you get a lot of controls.
Charlie
"Jim Corey" <jcorey@.nospamcharter.net> wrote in message
news:evy2sawIEHA.940@.tk2msftngp13.phx.gbl...
> Hello,
> I've been using the datagrid, but now I need to sort
> on the columns, and I really want to do this on the client
> to save performance time.
> I had a third-party grid I used in ASP that worked great, but it was
> difficult to work with.
> So my list of requirements are simply:
> -- Sort by column (which implies that it'll be scrollable)
> -- Ease of use.
> -- Don't mind if it's reasonably priced, but I probably
> don't want a ton of features if that's going to complicate things.
> -- agreeable to my hosting company.
> Anybody want to offer some experiences?
> Thanks,
> Jim
>
>
> *** Sent via Developersdex http://www.examnotes.net ***
> Don't just participate in USENET...get rewarded for it!
I use the datagrid that comes with web matrix. It has some built in
features that would be a lot more work using the standard datagrid.
All it requires is for the dll from web matrix to be in the bin
directory.
Leslie
On Fri, 16 Apr 2004 10:36:31 -0700, "Charlie@.CBFC"
<charle1@.comcast.net> wrote:

>Check out the Infragistics controls. Your host won't mind because they are
>native .NET objects. A little pricey, but you get a lot of controls.
>Charlie
>"Jim Corey" <jcorey@.nospamcharter.net> wrote in message
>news:evy2sawIEHA.940@.tk2msftngp13.phx.gbl...
>

Third-party Grid recommendation?

Hello,

I've been using the datagrid, but now I need to sort
on the columns, and I really want to do this on the client
to save performance time.
I had a third-party grid I used in ASP that worked great, but it was
difficult to work with.

So my list of requirements are simply:
-- Sort by column (which implies that it'll be scrollable)
-- Ease of use.
-- Don't mind if it's reasonably priced, but I probably
don't want a ton of features if that's going to complicate things.
-- agreeable to my hosting company.

Anybody want to offer some experiences?

Thanks,
Jim

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!Check out the Infragistics controls. Your host won't mind because they are
native .NET objects. A little pricey, but you get a lot of cool controls.

Charlie
"Jim Corey" <jcorey@.nospamcharter.net> wrote in message
news:evy2sawIEHA.940@.tk2msftngp13.phx.gbl...
> Hello,
> I've been using the datagrid, but now I need to sort
> on the columns, and I really want to do this on the client
> to save performance time.
> I had a third-party grid I used in ASP that worked great, but it was
> difficult to work with.
> So my list of requirements are simply:
> -- Sort by column (which implies that it'll be scrollable)
> -- Ease of use.
> -- Don't mind if it's reasonably priced, but I probably
> don't want a ton of features if that's going to complicate things.
> -- agreeable to my hosting company.
> Anybody want to offer some experiences?
> Thanks,
> Jim
>
>
> *** Sent via Developersdex http://www.developersdex.com ***
> Don't just participate in USENET...get rewarded for it!
I use the datagrid that comes with web matrix. It has some built in
features that would be a lot more work using the standard datagrid.
All it requires is for the dll from web matrix to be in the bin
directory.

Leslie

On Fri, 16 Apr 2004 10:36:31 -0700, "Charlie@.CBFC"
<charle1@.comcast.net> wrote:

>Check out the Infragistics controls. Your host won't mind because they are
>native .NET objects. A little pricey, but you get a lot of cool controls.
>Charlie
>"Jim Corey" <jcorey@.nospamcharter.net> wrote in message
>news:evy2sawIEHA.940@.tk2msftngp13.phx.gbl...
>>
>> Hello,
>>
>> I've been using the datagrid, but now I need to sort
>> on the columns, and I really want to do this on the client
>> to save performance time.
>> I had a third-party grid I used in ASP that worked great, but it was
>> difficult to work with.
>>
>> So my list of requirements are simply:
>> -- Sort by column (which implies that it'll be scrollable)
>> -- Ease of use.
>> -- Don't mind if it's reasonably priced, but I probably
>> don't want a ton of features if that's going to complicate things.
>> -- agreeable to my hosting company.
>>
>> Anybody want to offer some experiences?
>>
>> Thanks,
>> Jim
>>
>>
>>
>>
>>
>> *** Sent via Developersdex http://www.developersdex.com ***
>> Don't just participate in USENET...get rewarded for it!

Third-party Grid recommendation?

Hello,

I've been using the datagrid, but now I need to sort
on the columns, and I really want to do this on the client
to save performance time.
I had a third-party grid I used in ASP that worked great, but it was
difficult to work with.

So my list of requirements are simply:
-- Sort by column (which implies that it'll be scrollable)
-- Ease of use.
-- Don't mind if it's reasonably priced, but I probably
don't want a ton of features if that's going to complicate things.
-- agreeable to my hosting company.

Anybody want to offer some experiences?

Thanks,
Jim

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!Check out the Infragistics controls. Your host won't mind because they are
native .NET objects. A little pricey, but you get a lot of cool controls.

Charlie
"Jim Corey" <jcorey@.nospamcharter.net> wrote in message
news:evy2sawIEHA.940@.tk2msftngp13.phx.gbl...
> Hello,
> I've been using the datagrid, but now I need to sort
> on the columns, and I really want to do this on the client
> to save performance time.
> I had a third-party grid I used in ASP that worked great, but it was
> difficult to work with.
> So my list of requirements are simply:
> -- Sort by column (which implies that it'll be scrollable)
> -- Ease of use.
> -- Don't mind if it's reasonably priced, but I probably
> don't want a ton of features if that's going to complicate things.
> -- agreeable to my hosting company.
> Anybody want to offer some experiences?
> Thanks,
> Jim
>
>
> *** Sent via Developersdex http://www.developersdex.com ***
> Don't just participate in USENET...get rewarded for it!
I use the datagrid that comes with web matrix. It has some built in
features that would be a lot more work using the standard datagrid.
All it requires is for the dll from web matrix to be in the bin
directory.

Leslie

On Fri, 16 Apr 2004 10:36:31 -0700, "Charlie@.CBFC"
<charle1@.comcast.net> wrote:

>Check out the Infragistics controls. Your host won't mind because they are
>native .NET objects. A little pricey, but you get a lot of cool controls.
>Charlie
>"Jim Corey" <jcorey@.nospamcharter.net> wrote in message
>news:evy2sawIEHA.940@.tk2msftngp13.phx.gbl...
>>
>> Hello,
>>
>> I've been using the datagrid, but now I need to sort
>> on the columns, and I really want to do this on the client
>> to save performance time.
>> I had a third-party grid I used in ASP that worked great, but it was
>> difficult to work with.
>>
>> So my list of requirements are simply:
>> -- Sort by column (which implies that it'll be scrollable)
>> -- Ease of use.
>> -- Don't mind if it's reasonably priced, but I probably
>> don't want a ton of features if that's going to complicate things.
>> -- agreeable to my hosting company.
>>
>> Anybody want to offer some experiences?
>>
>> Thanks,
>> Jim
>>
>>
>>
>>
>>
>> *** Sent via Developersdex http://www.developersdex.com ***
>> Don't just participate in USENET...get rewarded for it!

Monday, March 26, 2012

This is for the nth time I am posting. Is there no one to help!

This is how the presentation code look like. If I use
runat = server, ie; when I try to use onserverclick on the
button the javascript doesn't work . The displayanswers
method in the form returns a string of html text,basically
a table with radiobuttons or checkboxes aligned in it.

<form id="frmQuestion" method="post"
<ASP:DataList id="Questions" ShowHeader="false"
ShowFooter="false" runat="server" >
<ItemTemplate>
<TABLE ALIGN="left" >
<td
<asp:Label runat="server" Text='<%# DataBinder.Eval
(Container.DataItem, "MainQuestion_ID")%> '
ID="QuestionID" NAME="QuestionID">
</asp:Label
</td
<td
<asp:Label runat="server" Text='<%# DataBinder.Eval
(Container.DataItem, "MainQuestion_Txt")%>'
ID="QuestionTxt" NAME="QuestionTxt">
</asp:Label
</td
<td
<%# DisplayAnswers(DataBinder.Eval
(Container.DataItem, "MainQuestion_ID"),DataBinder.Eval
(Container.DataItem, "QuestionTypeID")) %
</td>
</tr></TABLE>
</ItemTemplate>
</ASP:DataList
<table align=right >
<tr><td
<a id=btnForward href="http://links.10026.com/?link=#"
onMouseOut="bforward.src='images/bforward.gif';"
onMouseOver="bforward.src='images/bforward_f2.gif';"
runat=server onclick="return validate();"><IMG
SRC="images/bforward.gif" ALT="" NAME="bforward"
ID="bforward" WIDTH="78" HEIGHT="24" BORDER="0"></A
</td></tr></table
I would like to retrieve the question id and the answer
(user-input) at the same time on click of the button. The
questionaire is paginated and this is the only form i am
using.

The code behind looks somewhat this way:

Sub Page_Load(ByVal Sender As Object, ByVal E As
EventArgs)

Dim oDt As DataTable
Dim oQuestion As Question ('This is the class
in my business layer)
oQuestion = New Question

Questions.DataSource = New DataView(oDt)
Questions.DataBind()

End Sub

What is the best way to handle Questionaire(online test)
projects . Can I display questions and answers at the same
time and how do I get questionid's and user-input to
insert into the database. There can be subquestions

From: "Corey Wineman" <cwineman@dotnet.itags.org.no-spam-adelphia.net
Maybe you could post some code. Its hard to tell what your
problem is from
you message which you have posted several times.

"ani" <anonymous@dotnet.itags.org.discussions.microsoft.com> wrote in
message
news:01b601c3a3ce$cbdc78c0$a401280a@dotnet.itags.org.phx.gbl...
> I have a datalist control in my aspx page(this is
> paginated and everytime submits to itself). I am calling
a
> function within my datalist that returns a html control
> (radio button ) in the form of the string. I also have
asp
> server controls(labels) in the datalist. When the form is
> processed, I am retrieving the values of the radio
buttons
> through Request.form. To retrieve the values of the asp
> server controls , I am using FindControl method. But this
> is written in the Page_Load method, so it returns the
> values of the current page before the page gets
submitted.
> I want the values after the page gets submitted. How do I
> retrieve them.
> If I use onserverclick on my button (which is a html
> control with rollover capability <a href>) , the onclick
> doesn't work fine for validating the html controls. I
> don't have runat=server on my form tag when I have
onclick
> attribute on the button. I am new to asp.net. I am not
> able to use both onclick and onserverclick at the same
> time. Why is it so..
> Please help!!

..I am guessing that your problem is with the <a href="http://links.10026.com/?link=#"
portion of your code. The problem is that you have a
runat=server on this control. The OnClick for the <a>
will then submit to the server, not to the javascript on
the client side. If you take that out, you should be
fine.

If you want to do validation on the click of the link,
you will need to put a custom validator in there.

I hope this helps

>--Original Message--
>This is how the presentation code look like. If I use
>runat = server, ie; when I try to use onserverclick on
the
>button the javascript doesn't work . The displayanswers
>method in the form returns a string of html
text,basically
>a table with radiobuttons or checkboxes aligned in it.
><form id="frmQuestion" method="post" >
><ASP:DataList id="Questions" ShowHeader="false"
>ShowFooter="false" runat="server" >
><ItemTemplate>
><TABLE ALIGN="left" >
><td>
> <asp:Label runat="server" Text='<%# DataBinder.Eval
>(Container.DataItem, "MainQuestion_ID")%> '
>ID="QuestionID" NAME="QuestionID">
> </asp:Label>
></td>
><td>
> <asp:Label runat="server" Text='<%# DataBinder.Eval
>(Container.DataItem, "MainQuestion_Txt")%>'
>ID="QuestionTxt" NAME="QuestionTxt">
> </asp:Label>
></td>
><td >
><%# DisplayAnswers(DataBinder.Eval
>(Container.DataItem, "MainQuestion_ID"),DataBinder.Eval
>(Container.DataItem, "QuestionTypeID")) %>
></td>
></tr></TABLE>
></ItemTemplate>
></ASP:DataList>
><table align=right >
><tr><td>
> <a id=btnForward href="http://links.10026.com/?link=#"
>onMouseOut="bforward.src='images/bforward.gif';"
>onMouseOver="bforward.src='images/bforward_f2.gif';"
>runat=server onclick="return validate();"><IMG
>SRC="images/bforward.gif" ALT="" NAME="bforward"
>ID="bforward" WIDTH="78" HEIGHT="24" BORDER="0"></A>
></td></tr></table>
>
>I would like to retrieve the question id and the answer
>(user-input) at the same time on click of the button.
The
>questionaire is paginated and this is the only form i am
>using.
>The code behind looks somewhat this way:
> Sub Page_Load(ByVal Sender As Object, ByVal E As
>EventArgs)
>
> Dim oDt As DataTable
> Dim oQuestion As Question ('This is the
class
>in my business layer)
> oQuestion = New Question
> Questions.DataSource = New DataView(oDt)
> Questions.DataBind()
>
>End Sub
>
>What is the best way to handle Questionaire(online test)
>projects . Can I display questions and answers at the
same
>time and how do I get questionid's and user-input to
>insert into the database. There can be subquestions
>
>From: "Corey Wineman" <cwineman@.no-spam-adelphia.net>
>Maybe you could post some code. Its hard to tell what
your
>problem is from
>you message which you have posted several times.
>
>"ani" <anonymous@.discussions.microsoft.com> wrote in
>message
>news:01b601c3a3ce$cbdc78c0$a401280a@.phx.gbl...
>> I have a datalist control in my aspx page(this is
>> paginated and everytime submits to itself). I am
calling
>a
>> function within my datalist that returns a html control
>> (radio button ) in the form of the string. I also have
>asp
>> server controls(labels) in the datalist. When the form
is
>> processed, I am retrieving the values of the radio
>buttons
>> through Request.form. To retrieve the values of the asp
>> server controls , I am using FindControl method. But
this
>> is written in the Page_Load method, so it returns the
>> values of the current page before the page gets
>submitted.
>> I want the values after the page gets submitted. How
do I
>> retrieve them.
>> If I use onserverclick on my button (which is a html
>> control with rollover capability <a href>) , the
onclick
>> doesn't work fine for validating the html controls. I
>> don't have runat=server on my form tag when I have
>onclick
>> attribute on the button. I am new to asp.net. I am not
>> able to use both onclick and onserverclick at the same
>> time. Why is it so..
>>
>> Please help!!
>>
>..
>
>.

This is for the nth time I am posting. Is there no one to help!

I have a datalist control in my aspx page(this is
paginated and everytime submits to itself). I am calling a
function within my datalist that returns a html control
(radio button ) in the form of the string. I also have asp
server controls(labels) in the datalist. When the form is
processed, I am retrieving the values of the radio buttons
through Request.form. To retrieve the values of the asp
server controls , I am using FindControl method. But this
is written in the Page_Load method, so it returns the
values of the current page before the page gets submitted.
I want the values after the page gets submitted. How do I
retrieve them.
If I use onserverclick on my button (which is a html
control with rollover capability <a href>) , the onclick
doesn't work fine for validating the html controls. I
don't have runat=server on my form tag when I have onclick
attribute on the button. I am new to asp.net. I am not
able to use both onclick and onserverclick at the same
time. Why is it so..

Please help!!Maybe you could post some code. Its hard to tell what your problem is from
you message which you have posted several times.

"ani" <anonymous@.discussions.microsoft.com> wrote in message
news:01b601c3a3ce$cbdc78c0$a401280a@.phx.gbl...
> I have a datalist control in my aspx page(this is
> paginated and everytime submits to itself). I am calling a
> function within my datalist that returns a html control
> (radio button ) in the form of the string. I also have asp
> server controls(labels) in the datalist. When the form is
> processed, I am retrieving the values of the radio buttons
> through Request.form. To retrieve the values of the asp
> server controls , I am using FindControl method. But this
> is written in the Page_Load method, so it returns the
> values of the current page before the page gets submitted.
> I want the values after the page gets submitted. How do I
> retrieve them.
> If I use onserverclick on my button (which is a html
> control with rollover capability <a href>) , the onclick
> doesn't work fine for validating the html controls. I
> don't have runat=server on my form tag when I have onclick
> attribute on the button. I am new to asp.net. I am not
> able to use both onclick and onserverclick at the same
> time. Why is it so..
> Please help!!
sounds like you are not leveraging the page.postback property. page_load
gets called every time the page loads whether it is post back or not. the
onserverclicks will get loaded after page_load. sounds like you are loading
the datalist twice before doing a request.form on the data. you should only
build the datalist once. it will be in the viewstate on the postback, so no
need to reload it.

function page_load()
if page.ispostback then
'get checkbox values and labels or do nothing and rely on the
OnServerClick event
else
'load datalist
end if
end function

also if you want to use javascript onclick and asp.net's onserverclick do
this...
<input type="submit" id="btn" value="go" runat="server" onclick="return
validate();"
if you use <asp:button...>, the onclick event is looking for a public
function in the codebehind which default to private... not sure, but I have
to change that to public everytime.

again, without code samples, it is tough. I hope I helped a little bit.
~psb

"ani" <anonymous@.discussions.microsoft.com> wrote in message
news:01b601c3a3ce$cbdc78c0$a401280a@.phx.gbl...
> I have a datalist control in my aspx page(this is
> paginated and everytime submits to itself). I am calling a
> function within my datalist that returns a html control
> (radio button ) in the form of the string. I also have asp
> server controls(labels) in the datalist. When the form is
> processed, I am retrieving the values of the radio buttons
> through Request.form. To retrieve the values of the asp
> server controls , I am using FindControl method. But this
> is written in the Page_Load method, so it returns the
> values of the current page before the page gets submitted.
> I want the values after the page gets submitted. How do I
> retrieve them.
> If I use onserverclick on my button (which is a html
> control with rollover capability <a href>) , the onclick
> doesn't work fine for validating the html controls. I
> don't have runat=server on my form tag when I have onclick
> attribute on the button. I am new to asp.net. I am not
> able to use both onclick and onserverclick at the same
> time. Why is it so..
> Please help!!
This is how the presentation code look like. If I use
runat = server, ie; when I try to use onserverclick on the
button the javascript doesn't work . The displayanswers
method in the form returns a string of html text,basically
a table with radiobuttons or checkboxes aligned in it.

<form id="frmQuestion" method="post"
<ASP:DataList id="Questions" ShowHeader="false"
ShowFooter="false" runat="server" >
<ItemTemplate>
<TABLE ALIGN="left" >
<td
<asp:Label runat="server" Text='<%# DataBinder.Eval
(Container.DataItem, "MainQuestion_ID")%> '
ID="QuestionID" NAME="QuestionID">
</asp:Label
</td
<td
<asp:Label runat="server" Text='<%# DataBinder.Eval
(Container.DataItem, "MainQuestion_Txt")%>'
ID="QuestionTxt" NAME="QuestionTxt">
</asp:Label
</td
<td
<%# DisplayAnswers(DataBinder.Eval
(Container.DataItem, "MainQuestion_ID"),DataBinder.Eval
(Container.DataItem, "QuestionTypeID")) %
</td>
</tr></TABLE>
</ItemTemplate>
</ASP:DataList
<table align=right >
<tr><td
<a id=btnForward href="http://links.10026.com/?link=#"
onMouseOut="bforward.src='images/bforward.gif';"
onMouseOver="bforward.src='images/bforward_f2.gif';"
runat=server onclick="return validate();"><IMG
SRC="images/bforward.gif" ALT="" NAME="bforward"
ID="bforward" WIDTH="78" HEIGHT="24" BORDER="0"></A
</td></tr></table
I would like to retrieve the question id and the answer
(user-input) at the same time on click of the button. The
questionaire is paginated and this is the only form i am
using.

The code behind looks somewhat this way:

Sub Page_Load(ByVal Sender As Object, ByVal E As
EventArgs)

Dim oDt As DataTable
Dim oQuestion As Question ('This is the class
in my business layer)
oQuestion = New Question

Questions.DataSource = New DataView(oDt)
Questions.DataBind()

End Sub

What is the best way to handle Questionaire(online test)
projects . Can I display questions and answers at the same
time and how do I get questionid's and user-input to
insert into the database. There can be subquestions
This is how the presentation code look like. If I use
runat = server, ie; when I try to use onserverclick on the
button the javascript doesn't work . The displayanswers
method in the form returns a string of html text,basically
a table with radiobuttons or checkboxes aligned in it.

<form id="frmQuestion" method="post"
<ASP:DataList id="Questions" ShowHeader="false"
ShowFooter="false" runat="server" >
<ItemTemplate>
<TABLE ALIGN="left" >
<td
<asp:Label runat="server" Text='<%# DataBinder.Eval
(Container.DataItem, "MainQuestion_ID")%> '
ID="QuestionID" NAME="QuestionID">
</asp:Label
</td
<td
<asp:Label runat="server" Text='<%# DataBinder.Eval
(Container.DataItem, "MainQuestion_Txt")%>'
ID="QuestionTxt" NAME="QuestionTxt">
</asp:Label
</td
<td
<%# DisplayAnswers(DataBinder.Eval
(Container.DataItem, "MainQuestion_ID"),DataBinder.Eval
(Container.DataItem, "QuestionTypeID")) %
</td>
</tr></TABLE>
</ItemTemplate>
</ASP:DataList
<table align=right >
<tr><td
<a id=btnForward href="http://links.10026.com/?link=#"
onMouseOut="bforward.src='images/bforward.gif';"
onMouseOver="bforward.src='images/bforward_f2.gif';"
runat=server onclick="return validate();"><IMG
SRC="images/bforward.gif" ALT="" NAME="bforward"
ID="bforward" WIDTH="78" HEIGHT="24" BORDER="0"></A
</td></tr></table
I would like to retrieve the question id and the answer
(user-input) at the same time on click of the button. The
questionaire is paginated and this is the only form i am
using.

The code behind looks somewhat this way:

Sub Page_Load(ByVal Sender As Object, ByVal E As
EventArgs)

Dim oDt As DataTable
Dim oQuestion As Question ('This is the class
in my business layer)
oQuestion = New Question

Questions.DataSource = New DataView(oDt)
Questions.DataBind()

End Sub

What is the best way to handle Questionaire(online test)
projects . Can I display questions and answers at the same
time and how do I get questionid's and user-input to
insert into the database. There can be subquestions

Saturday, March 24, 2012

this trouble me a long time :(

Hi,

I developed some applications in asp & asp.net and running together under iis5.
I found they have own set of variables each of them, that is to say, they cannot pass a variable between the asp and asp.net applications.

i.e.
I set a session in asp: session("counter") = 100
I cannot get its value in asp.net by: session["counter"] because "counter" not be given.

I do wanna exchange information between them, but how can I? Any good idea?

thanksSession sharing between ASP and ASP.NET

Remember, Google knows all.

Thursday, March 22, 2012

Thread & timer in Web application C#

Hi all,I am using web application to request some infomation to the validgateway and get the response. But in some time if we request theinvalid gateway it wont response. So the application does not doanything without the response. So I planned to use the thread and timerconcept. If I put the function in thread and used the timer concept. Inthe windows application i did the same using the thread and the timertick. I dont know how to implement in the web application. If anybodyknows please give me ur suggestions.

Hi,

You might get some idea from here,

http://ajax.asp.net/docs/overview/UsingTimerControlTutorial.aspxhttp://www.codeplex.com/AtlasControlToolkit/Release/ProjectReleases.aspx?ReleaseId=1813http://www.codeproject.com/Ajax/stoppabletimer.asphttp://www.codeproject.com/useritems/WebTimer.asp http://www.codeproject.com/aspnet/dhtml_timer.asp


use ajax....

<script>

var xmlHttp

function showHint()

{

//var url="concession/AJAX_Code.aspx"

var url="timeservice.asmx/HelloWorld"

xmlHttp=GetXmlHttpObject(stateChanged)

xmlHttp.open("post", url ,true)

xmlHttp.send(null)

window.setTimeout("showHint()",1000);

}

function stateChanged()

{

if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")

{

document.getElementById("lblDate").innerHTML=xmlHttp.responseText

}

}

function GetXmlHttpObject(handler)

{

var objXmlHttp=null

if (navigator.userAgent.indexOf("Opera")>=0)

{

alert("This example doesn't work in Opera")return

}

if (navigator.userAgent.indexOf("MSIE")>=0)

{

var strName="Msxml2.XMLHTTP"

if (navigator.appVersion.indexOf("MSIE 5.5")>=0)

{

strName="Microsoft.XMLHTTP"

}

try

{

objXmlHttp=new ActiveXObject(strName)

objXmlHttp.onreadystatechange=handler

return objXmlHttp

}

catch(e)

{

alert("Error. Scripting for ActiveX might be disabled")return

}

}

if (navigator.userAgent.indexOf("Mozilla")>=0)

{

objXmlHttp=new XMLHttpRequest()

objXmlHttp.onload=handler

objXmlHttp.onerror=handler

return objXmlHttp

}

}

</script>

//////////////And the webservice for this is

<WebMethod()> _

PublicFunction HelloWorld()AsString

Return Now.ToString("dd-MMMM-yyyy hh:mm:ss")

EndFunction

Tuesday, March 13, 2012

Thread time out

Hi,

I have a thread which has to be alive for more than 2
hours. I had given the "<httpRuntime
executionTimeout=14400"> in the web.config
But still the thread is aborted after 1 hour. But the
same thread is running for 4 hours in some other server.
so in the first server i guess there is some other factor
which is dominant. what could be that?

Thanks,
LekshmiYou are most likely having application restarts. When this happens, the app
domain is unloaded and that makes the running thread terminate.

--
Regards,
Alvin Bruney [Microsoft MVP ASP.NET]

[Shameless Author plug]
The Microsoft Office Web Components Black Book with .NET
Now Available @. http://www.lulu.com/owc
------------------

"lekshmi" <g_lekshmi@.yahoo.com> wrote in message
news:259c01c51484$684973d0$a501280a@.phx.gbl...
> Hi,
> I have a thread which has to be alive for more than 2
> hours. I had given the "<httpRuntime
> executionTimeout=14400"> in the web.config
> But still the thread is aborted after 1 hour. But the
> same thread is running for 4 hours in some other server.
> so in the first server i guess there is some other factor
> which is dominant. what could be that?
> Thanks,
> Lekshmi
could you please explain it more?

>--Original Message--
>You are most likely having application restarts. When
this happens, the app
>domain is unloaded and that makes the running thread
terminate.
>--
>Regards,
>Alvin Bruney [Microsoft MVP ASP.NET]
>[Shameless Author plug]
>The Microsoft Office Web Components Black Book with .NET
>Now Available @. http://www.lulu.com/owc
>------------------
-
>
>"lekshmi" <g_lekshmi@.yahoo.com> wrote in message
>news:259c01c51484$684973d0$a501280a@.phx.gbl...
>> Hi,
>>
>> I have a thread which has to be alive for more than 2
>> hours. I had given the "<httpRuntime
>> executionTimeout=14400"> in the web.config
>> But still the thread is aborted after 1 hour. But the
>> same thread is running for 4 hours in some other
server.
>> so in the first server i guess there is some other
factor
>> which is dominant. what could be that?
>>
>> Thanks,
>> Lekshmi
>
>.
examine your event log on the machine in question. You are looking for
application restart notifications. If you see these notifications, then it
means your application has been forcibly shut down by the run-time and you
threads have gone to the great beyond. Otherwise the problem lies somewhere
else. But it is important to eliminate this possibility first.

--
Regards,
Alvin Bruney [Microsoft MVP ASP.NET]

[Shameless Author plug]
The Microsoft Office Web Components Black Book with .NET
Now Available @. http://www.lulu.com/owc
------------------

<anonymous@.discussions.microsoft.com> wrote in message
news:26ec01c514c0$ec60cb50$a501280a@.phx.gbl...
> could you please explain it more?
>>--Original Message--
>>You are most likely having application restarts. When
> this happens, the app
>>domain is unloaded and that makes the running thread
> terminate.
>>
>>--
>>Regards,
>>Alvin Bruney [Microsoft MVP ASP.NET]
>>
>>[Shameless Author plug]
>>The Microsoft Office Web Components Black Book with .NET
>>Now Available @. http://www.lulu.com/owc
>>------------------
> -
>>
>>
>>"lekshmi" <g_lekshmi@.yahoo.com> wrote in message
>>news:259c01c51484$684973d0$a501280a@.phx.gbl...
>>> Hi,
>>>
>>> I have a thread which has to be alive for more than 2
>>> hours. I had given the "<httpRuntime
>>> executionTimeout=14400"> in the web.config
>>> But still the thread is aborted after 1 hour. But the
>>> same thread is running for 4 hours in some other
> server.
>>> so in the first server i guess there is some other
> factor
>>> which is dominant. what could be that?
>>>
>>> Thanks,
>>> Lekshmi
>>
>>
>>.
>

Thread time out

Hi,
I have a thread which has to be alive for more than 2
hours. I had given the "<httpRuntime
executionTimeout=14400"> in the web.config
But still the thread is aborted after 1 hour. But the
same thread is running for 4 hours in some other server.
so in the first server i guess there is some other factor
which is dominant. what could be that?
Thanks,
LekshmiYou are most likely having application restarts. When this happens, the app
domain is unloaded and that makes the running thread terminate.
Regards,
Alvin Bruney [Microsoft MVP ASP.NET]
[Shameless Author plug]
The Microsoft Office Web Components Black Book with .NET
Now Available @. http://www.lulu.com/owc
----
"lekshmi" <g_lekshmi@.yahoo.com> wrote in message
news:259c01c51484$684973d0$a501280a@.phx.gbl...
> Hi,
> I have a thread which has to be alive for more than 2
> hours. I had given the "<httpRuntime
> executionTimeout=14400"> in the web.config
> But still the thread is aborted after 1 hour. But the
> same thread is running for 4 hours in some other server.
> so in the first server i guess there is some other factor
> which is dominant. what could be that?
> Thanks,
> Lekshmi
could you please explain it more?

>--Original Message--
>You are most likely having application restarts. When
this happens, the app
>domain is unloaded and that makes the running thread
terminate.
>--
>Regards,
>Alvin Bruney [Microsoft MVP ASP.NET]
>[Shameless Author plug]
>The Microsoft Office Web Components Black Book with .NET
>Now Available @. http://www.lulu.com/owc
>----
-
>
>"lekshmi" <g_lekshmi@.yahoo.com> wrote in message
>news:259c01c51484$684973d0$a501280a@.phx.gbl...
server.
factor
>
>.
>
examine your event log on the machine in question. You are looking for
application restart notifications. If you see these notifications, then it
means your application has been forcibly shut down by the run-time and you
threads have gone to the great beyond. Otherwise the problem lies somewhere
else. But it is important to eliminate this possibility first.
Regards,
Alvin Bruney [Microsoft MVP ASP.NET]
[Shameless Author plug]
The Microsoft Office Web Components Black Book with .NET
Now Available @. http://www.lulu.com/owc
----
<anonymous@.discussions.microsoft.com> wrote in message
news:26ec01c514c0$ec60cb50$a501280a@.phx.gbl...
> could you please explain it more?
>
> this happens, the app
> terminate.
> -
> server.
> factor

Thread was being aborted

Any Idea why we get this error, its happening in only one page and that too
first time user visits that page,in the below "GetData" is a method which
gets the data from SQL Server, but some times it is taking time to get data
and throwing this error i think it has to throw "Timed Out" instead of this
"Thread Abort" error. any idea why we get this error?
Exception Type: System.Threading.ThreadAbortException
ExceptionState: System.Web.HttpApplication+CancelModuleException
Message: Thread was being aborted.
TargetSite: System.Data.DataSet GetData(RPID,
System.Data.SqlClient.SqlCommand)Unless you post the full code around where the error happens, then I can
only guess. One common cause for this error is that you have a
Response.Redirect statement enclosed within a try...catch

--
[note: if this post answers your question, you can mark it as an answer
using the web-based newsreader functions]
--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com

"xsluser" wrote:

> Any Idea why we get this error, its happening in only one page and that too
> first time user visits that page,in the below "GetData" is a method which
> gets the data from SQL Server, but some times it is taking time to get data
> and throwing this error i think it has to throw "Timed Out" instead of this
> "Thread Abort" error. any idea why we get this error?
> Exception Type: System.Threading.ThreadAbortException
> ExceptionState: System.Web.HttpApplication+CancelModuleException
> Message: Thread was being aborted.
> TargetSite: System.Data.DataSet GetData(RPID,
> System.Data.SqlClient.SqlCommand)
By default SQL Command has 30 second to finish.
If it did not finish then it's aborted.

Look at Command.CommandTimeout value and increase it.

George.

"xsluser" <xsluser@.discussions.microsoft.com> wrote in message news:F2E4E54F-7A47-47CE-BDC9-8FBDA9A9BD3F@.microsoft.com...
Any Idea why we get this error, its happening in only one page and that too
first time user visits that page,in the below "GetData" is a method which
gets the data from SQL Server, but some times it is taking time to get data
and throwing this error i think it has to throw "Timed Out" instead of this
"Thread Abort" error. any idea why we get this error?
Exception Type: System.Threading.ThreadAbortException
ExceptionState: System.Web.HttpApplication+CancelModuleException
Message: Thread was being aborted.
TargetSite: System.Data.DataSet GetData(RPID,
System.Data.SqlClient.SqlCommand)

Thread was being aborted

Any Idea why we get this error, its happening in only one page and that too
first time user visits that page,in the below "GetData" is a method which
gets the data from SQL Server, but some times it is taking time to get data
and throwing this error i think it has to throw "Timed Out" instead of this
"Thread Abort" error. any idea why we get this error?
Exception Type: System.Threading.ThreadAbortException
ExceptionState: System.Web.HttpApplication+CancelModuleException
Message: Thread was being aborted.
TargetSite: System.Data.DataSet GetData(RPID,
System.Data.SqlClient.SqlCommand)Unless you post the full code around where the error happens, then I can
only guess. One common cause for this error is that you have a
Response.Redirect statement enclosed within a try...catch
[note: if this post answers your question, you can mark it as an answer
using the web-based newsreader functions]
--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"xsluser" wrote:

> Any Idea why we get this error, its happening in only one page and that to
o
> first time user visits that page,in the below "GetData" is a method which
> gets the data from SQL Server, but some times it is taking time to get dat
a
> and throwing this error i think it has to throw "Timed Out" instead of thi
s
> "Thread Abort" error. any idea why we get this error?
> Exception Type: System.Threading.ThreadAbortException
> ExceptionState: System.Web.HttpApplication+CancelModuleException
> Message: Thread was being aborted.
> TargetSite: System.Data.DataSet GetData(RPID,
> System.Data.SqlClient.SqlCommand)
By default SQL Command has 30 second to finish.
If it did not finish then it's aborted.
Look at Command.CommandTimeout value and increase it.
George.
"xsluser" <xsluser@.discussions.microsoft.com> wrote in message news:F2E4E54F
-7A47-47CE-BDC9-8FBDA9A9BD3F@.microsoft.com...
Any Idea why we get this error, its happening in only one page and that too
first time user visits that page,in the below "GetData" is a method which
gets the data from SQL Server, but some times it is taking time to get data
and throwing this error i think it has to throw "Timed Out" instead of this
"Thread Abort" error. any idea why we get this error?
Exception Type: System.Threading.ThreadAbortException
ExceptionState: System.Web.HttpApplication+CancelModuleException
Message: Thread was being aborted.
TargetSite: System.Data.DataSet GetData(RPID,
System.Data.SqlClient.SqlCommand)

Thread was being aborted error message

I have this web application that runs for about 5 minutes doing to
database processing, about 50% of the time I get the error message
Thread was being aborted.

I am looking for hint at where to look, I've been banging my head on
this issue for a couple of months (when I have time to bang my head on
this).

Here's some information on my app:

..Net 1.1
I am not using either response.redirect or server.transfer
I'm not threading anything (single synchronous thread)
My ASP.Net UI calles a .Net class for the processing
Tested on 3 different dedicated IIS servers with same results

Works fine if I install it on a desktop (any desktop) running IIS
Works irratically when I install it on a server running either Windows
Server 2000 or Windows Server 2003

What should I be looking at?Alex,
Are you saying that a particular ASP.NET web page kicks off some process
that runs for 5 minutes? The default ASP.NET Script timeout is 90 seconds.
You can change this, and you can also change the httpRuntime executionTimeout
value to a larger number by bringing this element into your web.config to
override the setting in machine.config.
Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com
"Alex A." wrote:

Quote:

Originally Posted by

I have this web application that runs for about 5 minutes doing to
database processing, about 50% of the time I get the error message
Thread was being aborted.
>
I am looking for hint at where to look, I've been banging my head on
this issue for a couple of months (when I have time to bang my head on
this).
>
Here's some information on my app:
>
..Net 1.1
I am not using either response.redirect or server.transfer
I'm not threading anything (single synchronous thread)
My ASP.Net UI calles a .Net class for the processing
Tested on 3 different dedicated IIS servers with same results
>
Works fine if I install it on a desktop (any desktop) running IIS
Works irratically when I install it on a server running either Windows
Server 2000 or Windows Server 2003
>
What should I be looking at?
>
>


Peter,

The script timeout was set to 900 seconds (15 minutes), I had
encountered this issue on another project.

The issue is sporadic, it'll either work or not and when it doesn't it
a thread abort message.

Nothing fancy is being done, it's mainly reading about 300 invoices
from a database converting the data into a format and saving it to a
file on a server.

Peter wrote:

Quote:

Originally Posted by

Alex,
Are you saying that a particular ASP.NET web page kicks off some process
that runs for 5 minutes? The default ASP.NET Script timeout is 90 seconds.
You can change this, and you can also change the httpRuntime executionTimeout
value to a larger number by bringing this element into your web.config to
override the setting in machine.config.
Peter
>
--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com
>
>
>
>
"Alex A." wrote:
>

Quote:

Originally Posted by

I have this web application that runs for about 5 minutes doing to
database processing, about 50% of the time I get the error message
Thread was being aborted.

I am looking for hint at where to look, I've been banging my head on
this issue for a couple of months (when I have time to bang my head on
this).

Here's some information on my app:

..Net 1.1
I am not using either response.redirect or server.transfer
I'm not threading anything (single synchronous thread)
My ASP.Net UI calles a .Net class for the processing
Tested on 3 different dedicated IIS servers with same results

Works fine if I install it on a desktop (any desktop) running IIS
Works irratically when I install it on a server running either Windows
Server 2000 or Windows Server 2003

What should I be looking at?


Besides the script timeout, etc. You also have both a connection timeout and
a command timeout (that's with SQLClient). Very often developers forget about
the commandTimeout property.
Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com
"Alex A." wrote:

Quote:

Originally Posted by

Peter,
>
The script timeout was set to 900 seconds (15 minutes), I had
encountered this issue on another project.
>
The issue is sporadic, it'll either work or not and when it doesn't it
a thread abort message.
>
Nothing fancy is being done, it's mainly reading about 300 invoices
from a database converting the data into a format and saving it to a
file on a server.
>
Peter wrote:

Quote:

Originally Posted by

Alex,
Are you saying that a particular ASP.NET web page kicks off some process
that runs for 5 minutes? The default ASP.NET Script timeout is 90 seconds.
You can change this, and you can also change the httpRuntime executionTimeout
value to a larger number by bringing this element into your web.config to
override the setting in machine.config.
Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com
"Alex A." wrote:

Quote:

Originally Posted by

I have this web application that runs for about 5 minutes doing to
database processing, about 50% of the time I get the error message
Thread was being aborted.
>
I am looking for hint at where to look, I've been banging my head on
this issue for a couple of months (when I have time to bang my head on
this).
>
Here's some information on my app:
>
..Net 1.1
I am not using either response.redirect or server.transfer
I'm not threading anything (single synchronous thread)
My ASP.Net UI calles a .Net class for the processing
Tested on 3 different dedicated IIS servers with same results
>
Works fine if I install it on a desktop (any desktop) running IIS
Works irratically when I install it on a server running either Windows
Server 2000 or Windows Server 2003
>
What should I be looking at?
>
>


>
>


The SQL timeout is set to 5 minutes, but reading the actual database
only takes a second or two.

I think I've made sure every possible timeout is set to a high number,
not that I'm aware of every possible place a timeout might occur but I
think I've covered the basic ones that you've mentionned.

Also what I've tried to do is try and pin point where the error is
occuring.
I've set up a big try catch using the ThreadException but it never hits
my
ThreadException, I've put the ThreadException where my call to the
external Class Library is made so if the ThreadException occurs in
there it should catch it but it never does.

I am completly baffled.

Peter wrote:

Quote:

Originally Posted by

Besides the script timeout, etc. You also have both a connection timeout and
a command timeout (that's with SQLClient). Very often developers forget about
the commandTimeout property.
Peter
>
--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com
>
>
>
>
"Alex A." wrote:
>

Quote:

Originally Posted by

Peter,

The script timeout was set to 900 seconds (15 minutes), I had
encountered this issue on another project.

The issue is sporadic, it'll either work or not and when it doesn't it
a thread abort message.

Nothing fancy is being done, it's mainly reading about 300 invoices
from a database converting the data into a format and saving it to a
file on a server.

Peter wrote:

Quote:

Originally Posted by

Alex,
Are you saying that a particular ASP.NET web page kicks off some process
that runs for 5 minutes? The default ASP.NET Script timeout is 90 seconds.
You can change this, and you can also change the httpRuntime executionTimeout
value to a larger number by bringing this element into your web.config to
override the setting in machine.config.
Peter
>
--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com
>
>
>
>
"Alex A." wrote:
>
I have this web application that runs for about 5 minutes doing to
database processing, about 50% of the time I get the error message
Thread was being aborted.

I am looking for hint at where to look, I've been banging my head on
this issue for a couple of months (when I have time to bang my head on
this).

Here's some information on my app:

..Net 1.1
I am not using either response.redirect or server.transfer
I'm not threading anything (single synchronous thread)
My ASP.Net UI calles a .Net class for the processing
Tested on 3 different dedicated IIS servers with same results

Works fine if I install it on a desktop (any desktop) running IIS
Works irratically when I install it on a server running either Windows
Server 2000 or Windows Server 2003

What should I be looking at?



Alex,
Hook the Application_Error event in Global.asax and use:

Exception ex=Server.GetLastError.GetBaseException()
// log or report the exception here

Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com
"Alex A." wrote:

Quote:

Originally Posted by

The SQL timeout is set to 5 minutes, but reading the actual database
only takes a second or two.
>
I think I've made sure every possible timeout is set to a high number,
not that I'm aware of every possible place a timeout might occur but I
think I've covered the basic ones that you've mentionned.
>
Also what I've tried to do is try and pin point where the error is
occuring.
I've set up a big try catch using the ThreadException but it never hits
my
ThreadException, I've put the ThreadException where my call to the
external Class Library is made so if the ThreadException occurs in
there it should catch it but it never does.
>
I am completly baffled.
>
Peter wrote:

Quote:

Originally Posted by

Besides the script timeout, etc. You also have both a connection timeout and
a command timeout (that's with SQLClient). Very often developers forget about
the commandTimeout property.
Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com
"Alex A." wrote:

Quote:

Originally Posted by

Peter,
>
The script timeout was set to 900 seconds (15 minutes), I had
encountered this issue on another project.
>
The issue is sporadic, it'll either work or not and when it doesn't it
a thread abort message.
>
Nothing fancy is being done, it's mainly reading about 300 invoices
from a database converting the data into a format and saving it to a
file on a server.
>
Peter wrote:
Alex,
Are you saying that a particular ASP.NET web page kicks off some process
that runs for 5 minutes? The default ASP.NET Script timeout is 90 seconds.
You can change this, and you can also change the httpRuntime executionTimeout
value to a larger number by bringing this element into your web.config to
override the setting in machine.config.
Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com




"Alex A." wrote:

I have this web application that runs for about 5 minutes doing to
database processing, about 50% of the time I get the error message
Thread was being aborted.
>
I am looking for hint at where to look, I've been banging my head on
this issue for a couple of months (when I have time to bang my head on
this).
>
Here's some information on my app:
>
..Net 1.1
I am not using either response.redirect or server.transfer
I'm not threading anything (single synchronous thread)
My ASP.Net UI calles a .Net class for the processing
Tested on 3 different dedicated IIS servers with same results
>
Works fine if I install it on a desktop (any desktop) running IIS
Works irratically when I install it on a server running either Windows
Server 2000 or Windows Server 2003
>
What should I be looking at?
>
>
>
>


>
>