w3wp problem

2005-08-14 Thread BDOTNET
---

New Message on BDOTNET

---
From: bhaumikit
Message 1 in Discussion

 Hi,All   I am facing problem of  w3wp.exe process recycling unexpectedly. 
Environment is ASP .NET v1.1 and IIS V6.0 and Windows Server 2003 .   Whenever 
I Kill this worker process and again start application it runs smoothely. This 
behaviour is also time bound like application works fine for around 40 minutes 
or so and around 10 users working simultaneously.   Also want to know steps to 
be taken to improve the performance of application in multiprocessor webgarden 
environment.   Regards Bhaumik Plz help me to solve this problem.

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the "Remove" link below. On the 
pre-addressed e-mail message that opens, simply click "Send". Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Accessing IIS settings using WMI

2005-08-14 Thread Gaddam_Prakash
---

New Message on BDOTNET

---
From: Gaddam_Prakash
Message 1 in Discussion

HI ,

I need to change the Local path of the IIS setting using WMI or any
other method on a remote server.

Any help as whats the class & property thr which I can do this or any
link wld be very much appreciated.

Thanks,
Bhanu


---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/BDotNet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the "Remove" link below. On the 
pre-addressed e-mail message that opens, simply click "Send". Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: how to use Log4net

2005-08-14 Thread Varad_RS
---

New Message on BDOTNET

---
From: Varad_RS
Message 2 in Discussion

Hello There!   Check out the following link and go to "Using log4Net in your 
Application" section to get more details on configuring your App to use 
log4Net.   http://www.ondotnet.com/pub/a/dotnet/2003/06/16/log4net.html?page=2  
 Hope this helps.   Thanks, Varad.

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/BDotNet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the "Remove" link below. On the 
pre-addressed e-mail message that opens, simply click "Send". Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: Combo Box Code Prob - MKG

2005-08-14 Thread Varad_RS
---

New Message on BDOTNET

---
From: Varad_RS
Message 2 in Discussion

The problem you are facing is due to % in the combo value. You need to remove 
the % sign while converting the value to Integer and then do the calculation to 
display the value in the TextBox2. Also your calculation for percentage (num1 * 
num2) is not correct.   Please use the following code and let me know the 
result.
Private Sub ComboBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal 
e As System.EventArgs) Handles ComboBox1.SelectedIndexChanged  
Dim num1 As Integer 
Dim num2 As Integer 
Dim num As String 
num = Mid(ComboBox1.Text, 1, Len(ComboBox1.Text) - 1) 
num1 = CType(num, Integer) 
' num1 = CType(ComboBox1.Text, Integer) 
num2 = CType(TextBox1.Text, Integer) 
TextBox2.Text = (num1 * num2) / 100 
End Sub 
Hope this helps. 
Thanks,
Varad. 
 

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/BDotNet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the "Remove" link below. On the 
pre-addressed e-mail message that opens, simply click "Send". Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: w3wp problem

2005-08-14 Thread Varad_RS
---

New Message on BDOTNET

---
From: Varad_RS
Message 2 in Discussion

Hello,   Please try the following and let me know the results.   Modify your 
web.config file to support StateServer mode.   This mode is best used when 
performance is important in a multi-process environment where we never know 
which server user will request an application from. With the out-of-process 
mode, you get the performance of reading from the memory and also realiability 
of a separate process that manages the state of al servers.   A scalable 
session-state mechanism that can be used in both Web farm and Web garden 
scenarios and it helps administrators to allocate more processors to a Web 
Application to improve its scalability.   Hope this helps.   Let me know!   
Thanks, Varad.

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/BDotNet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the "Remove" link below. On the 
pre-addressed e-mail message that opens, simply click "Send". Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Article:Exporting your data to CSV format

2005-08-14 Thread DotNet-Shyam
---

New Message on BDOTNET

---
From: DotNet-Shyam
Message 1 in Discussion

Exporting your data to CSV format
On-line web applications providing some business functionality often need to 
exchange data between other applications. For example, data displayed in a 
DataGrid might be needed by an Excel spreadsheet or data might be needed to be 
put inside Outlook address book. In such cases Comma Separated Values (CSV) 
format is the most widely used data interchange format. In this article we will 
see how to write a generic routine so that your entire DataTable can be 
exported to CSV  format.   
http://www.dotnetbips.com/386541cb-7e0f-491f-b86a-f9bc8be738b8.aspx?articleid=302
   Author: Bipin Joshi   --
Regards,
Shyam
Course Coordinator BinaryIntellect Consulting
Looking for .NET Training in Mumbai? 
www.binaryintellect.com 


---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/BDotNet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the "Remove" link below. On the 
pre-addressed e-mail message that opens, simply click "Send". Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: Very Urgent

2005-08-14 Thread Mrinal
---

New Message on BDOTNET

---
From: Mrinal
Message 2 in Discussion

Hi Vijay ,   If you start going in the depth , answer to this question may span 
a book , but let me tell you in precise , what i know :   1. A piece code , you 
have compiled into assembly with IL + manifest . 2. This is a high level binary 
and MS standard . 3. Now when ever there will be a request for a given method , 
that will be JIT compiled ( Just in time ) into machine code / native code , 
that processor can understand for execution . 4. So , what happens is when 
assembly is created , then for each variable and method a V Table is created ( 
virtual table) . 5. That has some key value pair kind of arrangement , with 
op-codes , where till the point a method or variable is not JIT compiled it 
doesn't consists of actual memory allocations / locations but some temporary 
values , so when request comes , it compiled th IL to native code and pass on 
the Address of Allocation to the V Table for any future references . 6. For a 
given execution it's a one time process .   Some more information , as u may 
need it :   1. See when an assembly is formed , it has track of all methods / 
variables , through Manifest , which has all data stored .   2. Now during 
execution process from Main method there's a call to Method B , so CLR reads 
the manifest and gets the Method B IL code and JIT compiles it to native 
processor dependant code  .   That's why you know you can't Use a netmodule for 
execution purpose , essentially anything without the manifest can't be used , 
because CLR can't know , which IL Code to Pick for Native compilation and our 
dude doesn't beleives in compiling everything at one shot .   I hope it helps 
upto some extent , in case you have more issues , post back , i will try my 
level best to help you out .   thanks ,   Mrinal  

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the "Remove" link below. On the 
pre-addressed e-mail message that opens, simply click "Send". Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Very Urgent

2005-08-14 Thread vijayvmishra
---

New Message on BDOTNET

---
From: vijayvmishra
Message 1 in Discussion

Hi i want to know that how the CLR knows which piece of code to be executed in 
the assembly. how it works pls explain..   Thanks

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the "Remove" link below. On the 
pre-addressed e-mail message that opens, simply click "Send". Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: How to convert dataset to dataclass

2005-08-14 Thread Varad_RS
---

New Message on BDOTNET

---
From: Varad_RS
Message 2 in Discussion

Hi,   You mean, a class representation of data retrieved from a database 
record?   Normally, records from database are retrieved using standard ADO.NET 
and returned as a DataSet. We can iterate the DataSet and for each DataRow 
instantiate a new object, setting its state using the data retrieved from the 
row.   I am not sure about your exact requirement, If you can provide me with 
more information I can give some sample snippets.   Let me know.   Thanks, 
Varad. 
 

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/BDotNet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the "Remove" link below. On the 
pre-addressed e-mail message that opens, simply click "Send". Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]