Hi,
I developed a web application, which is having multi thread function.
Its working fine in the local and in the test server.
but when its moved to live, Threading is not working.
I am using C#, ASP.net.
ISS 6.0.
Please guide me to solve this.
Rajendra Prabu Elias.
User Profile
Collapse
-
MultiThreading is not working in server
-
MultiThreading is not working in server
Hi,
I developed a web application, which is having multi thread function.
Its working fine in the local and in the test server.
but when its moved to live, Threading is not working.
I am using C#, ASP.net.
ISS 6.0.
Please guide me to solve this.
Rajendra Prabu Elias. -
Thaks for reply
I will tell you my exact meed.
I will have a text document (SQL script).
I want to find particular sentence Starts with "ALTER" and end with "NULL"
It may occur in many times. So I need to list all the lines. With my above method, it displayed first a single setance by considering first ALTER and last NULL. But I i.e., It displayed all the sentence from... -
thanks for reply
I want to do it thru regular expression.
I tried the below
Code:txtOutput.Text=""; Regex exp = new Regex("ALTER[\\D]*NULL", RegexOptions.Multiline); MatchCollection mcol= exp.Matches(txtInput.Text); foreach (Match mat in mcol) { txtOutput.Text = txtOutput.Text+ "\n" + mat.Value.ToString();
Leave a comment:
-
Regular expression
Hi,
I want to take the particular words from a text document.
i.e., Need to take all the sentence starts with "Alter" and End with "null"
Can any one help me to do this....
Rajendra Prabu Elias -
Image manipulation on fly
Hi Experts!
I am doing a project which is having an option to the users, to design there room infrastructure. They can select the floor style by selecting the tile images given by us, and the furniture given by us and so on. Anyone have experience in this kind of works of know any third party tools for this?
Please help me to proceed…..
Regards,
Rajendra Prabu -
prabunewindia replied to my website gets affected by trojan virus... can anyone tell me why its happened?in .NEThi kenobewan,
The problem solved. My system was having more malwares in it. when i used FTP those malwares got into my server. Now we cleared those using spy doctor.
Thank you for your efforts!!!...Leave a comment:
-
prabunewindia replied to my website gets affected by trojan virus... can anyone tell me why its happened?in .NETThanks for the reply. Let me go to the hosting people and let you know once it is get OK.
thank you!...Leave a comment:
-
prabunewindia started a topic my website gets affected by trojan virus... can anyone tell me why its happened?in .NETmy website gets affected by trojan virus... can anyone tell me why its happened?
Hello everyone!,
I developed a website page with IFrame. It was working fine. When a new modification came, I done some modification on the page called in iframe. before it was done in .Net 2003. I just added new validation controls. And nothing done in code.(it was builded and kept as dll)
And i added one more iframe which is calling a page done in .Net 2005.
Once I uploaded the new modified site, its got trojan virus... -
hi,
Please check, where you placed the code to add "select"
if you wrote this before dropdownlist.Da taBaind(), then the add item (i.e, "select") will be deleted when you bind the datasource.
so please add the item after bind.
Its better to use,
dropdownlist.It ems.Insert(0,"s elect"); than add...
Rajendra Prabu EliasLeave a comment:
-
create xsl style sheet from rtf document
Hi all,
i am doing a project which need to create RTF document on fly, which has to pick up the value from database. I am now doing that by using xml dataset and xsl style sheet. I just created a style sheet for the RTF document needed and saved. but now my client need the option to add new RTF and edit the old one.
So here i need to create the xsl style sheet on fly based on the RTF document.
Is anyone know any... -
hi Frinny,
actually the local(client) machine getting slow when the users open the site.
they can't able to use the online music sites...
not slowing the page load..
but making other applications slow(like msword, outlook..)
can you please give more information
Thank you
Rajendra Prabu EliasLeave a comment:
-
Website making my system very slow
Hi,
I created a website for my client in asp.net with ajax.
site is already launced.
when we open the site, the machine is getting very slow.
Please tell me solution if anyone came across this type of issues.
Thanks
Rajendra Prabu Elias -
Thanks for replies...
as per plater's suggestion i am getting the dataset from dataset, whenever its needed...
ThanksLeave a comment:
-
Store user data(dataset) other than session
Hi,
for my project, i am using session to store the user's information like userid, username...
Also i am storing the dataset, which is having the datas for the particular user to avoid trip to database always. Unfortunately this is a big dataset... so once the dataset stored into session, the browsing system gets slow(bcoz its taking more memory)...
So can anyone suggest a way to store user related data... -
hi friend,
try with this one
[code=cpp]
DB_Connection conn = new DB_Connection() ;
cmd.Connection = (MySqlConnectio n)conn.DBConnec t();
cmd.CommandText = "getEmploye e";
cmd.CommandType = CommandType.Sto redProcedure; cmd.Parameters. Add("EMPLOYEEID ", eId);
DataTable dt = new DataTable();
SqlDataAdapter da = new SqlDataAdapter( cmd);
da.Fill(dt);
return...Leave a comment:
-
hi friend,
what davef told is correct.
and one more thing, u used the below one
cmd.ExecuteNonQ uery();
this will return the no of rows affected due to ur query, not the details in row.
normally it will be one, if u r getting one employee record
please use the following
SqlDataReader dr = cmd.ExecuteRead er();
return dr;
and make the method as Public...Leave a comment:
-
hi friend,
there is some validation controls are available in asp.net
study that and use
click here
Prabu...Leave a comment:
-
hi friend,
try with this one
for(DateTime date=fromDate;d ate<toDate;date .AddDays(1))
{
textBox.Text=te xtBox.Text+date .ToString();
}
Prabu...Leave a comment:
-
hi Anjukutty,
refer this one
asp.net
it will give an idea about asp.net
then u can go thru more online materials. search in google.
if u wanna buy book then i am recommending ASP.NET from wrox for basics and for little more depth u can go with ASP.NET from Apress
Prabu...Leave a comment:
No activity results to display
Show More
Leave a comment: