User Profile

Collapse

Profile Sidebar

Collapse
prabunewindia
prabunewindia
Last Activity: Oct 30 '09, 03:25 AM
Joined: Mar 29 '07
Location: Kerala, India
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • prabunewindia
    started a topic MultiThreading is not working in server
    in IIS

    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.
    See more | Go to post

  • prabunewindia
    started a topic 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.
    See more | Go to post

  • prabunewindia
    replied to Regular expression
    in .NET
    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...
    See more | Go to post

    Leave a comment:


  • prabunewindia
    replied to Regular expression
    in .NET
    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();
    ...
    See more | Go to post

    Leave a comment:


  • prabunewindia
    started a topic Regular expression
    in .NET

    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
    See more | Go to post

  • prabunewindia
    started a topic Image manipulation on fly
    in .NET

    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
    See more | Go to post

  • hi 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!!!...
    See more | Go to post

    Leave a comment:


  • Thanks for the reply. Let me go to the hosting people and let you know once it is get OK.

    thank you!...
    See more | Go to post

    Leave a comment:


  • my 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...
    See more | Go to post

  • prabunewindia
    replied to dropdown list and databinding issue
    in .NET
    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 Elias
    See more | Go to post

    Leave a comment:


  • prabunewindia
    started a topic create xsl style sheet from rtf document
    in .NET

    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...
    See more | Go to post

  • prabunewindia
    replied to Website making my system very slow
    in .NET
    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 Elias
    See more | Go to post

    Leave a comment:


  • prabunewindia
    started a topic Website making my system very slow
    in .NET

    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
    See more | Go to post

  • Thanks for replies...
    as per plater's suggestion i am getting the dataset from dataset, whenever its needed...

    Thanks
    See more | Go to post

    Leave a comment:


  • prabunewindia
    started a topic Store user data(dataset) other than session
    in .NET

    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
    ...
    See more | Go to post

  • prabunewindia
    replied to how to get just one record in gridview
    in .NET
    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...
    See more | Go to post
    Last edited by Frinavale; Sep 26 '07, 08:16 PM. Reason: Added [code] tags to make more legible

    Leave a comment:


  • prabunewindia
    replied to how to get just one record in gridview
    in .NET
    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...
    See more | Go to post

    Leave a comment:


  • prabunewindia
    replied to allow only numeric value inasp.net+c#
    in .NET
    hi friend,
    there is some validation controls are available in asp.net
    study that and use
    click here

    Prabu...
    See more | Go to post

    Leave a comment:


  • prabunewindia
    replied to getting all dates in a range
    in .NET
    hi friend,
    try with this one
    for(DateTime date=fromDate;d ate<toDate;date .AddDays(1))
    {
    textBox.Text=te xtBox.Text+date .ToString();
    }

    Prabu...
    See more | Go to post

    Leave a comment:


  • prabunewindia
    replied to Basics for ASP.NET
    in .NET
    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...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...