Search:

Type: Posts; User: sekarm

Search: Search took 0.03 seconds.

  1. Re: [ASP ASP.NET PHP JSP CGI]Logging out a user when they close the window

    Hi menthak,
    I am little bit confuse for you code. so user the need to close the logout.html page. or else it will close automatically.. but i tried your code in seperate application...
  2. Replies
    4
    Views
    1,364

    Re: How integrate payment options in Asp.Net

    Check this link,
    http://www.codeproject.com/KB/dotnet/PayPal.aspx
  3. Thread: TextBox Query

    by sekarm
    Replies
    3
    Views
    721

    Re: TextBox Query

    Try to use KeyPress and KeyUp events of the Text box control and validate the values in textbox like length of textbox, based on this you may write a query.
  4. Replies
    3
    Views
    949

    Re: [3.0/LINQ] MultiLanguage Support

    Hi MetalKid,
    Could you tell briefly on Database resource, LCID and URN. i am not having much knowledge regarding this..

    Thanks and Advance,
    ...Sekar
  5. Replies
    3
    Views
    949

    [3.0/LINQ] MultiLanguage Support

    Dear All,
    I need to give multi language support for my windows application. Please give your valuable ideas. I tried using Form based resource files. but i am not agree this model. i...
  6. Re: Validating details Login with SQL Database

    And one more thing In your SQL query there is Two Where Keyword. that is



    string command = "select * from logintable where WHERE username = 'Login1.UserName' AND password1 = 'Login1.Password'";...
  7. Re: Validating details Login with SQL Database

    You can use like that


    string connectionstring = "Server=chnmct66918\\SQLEXPRESS;Database=Vinitha;Integrated Security=true";
    SqlConnection myconn = new...
  8. Re: [2008] Simpler aproach ... IsDBnull error

    You can check this way.. its work or not...


    While img .Read()
    L11.Text = "<img src='" & img(0) & "' width='200' />"
    End While
  9. Replies
    5
    Views
    845

    Re: [2008] Problem in Browser Back Button

    Hi,
    I have added the code
    Response.Cache.SetCacheability(HttpCacheability.NoCache) in Main page Load Event. The problem has been solved.
    If i click the Login button the...
  10. Replies
    5
    Views
    845

    Re: [2008] Problem in Browser Back Button

    Yes menthak, If i write the Following line

    Response.Cache.SetCacheability(HttpCacheability.NoCache)

    main page Load event the the main page wont be redirected. Thanks...

    Then any other ways...
  11. Re: [2005] Question about the VS.Net Project Files

    Yes you can... You can move the entire folder to another location and click the solution file (.sln). the project will open..
  12. Replies
    5
    Views
    845

    Re: [2008] Problem in Browser Back Button

    No Menthak, :(
    I am not using Master Page. i am using a aspx web page for login page and another web page for main page.


    Thanks,
    ..Sekar
  13. Replies
    5
    Views
    845

    [2008] Problem in Browser Back Button

    Dear All,
    I have a problem in Browser back button. Upon submit of login button I created a Session like this..


    Session["loginname"] ="Username";

    Then page has...
  14. Thread: Timer?

    by sekarm
    Replies
    10
    Views
    676

    Re: Timer?

    The Sleep method used for sleep the current thread and wake up.. mostly it used for multi threading applications. Stop the current thread at what interval you set it..
  15. Thread: Timer?

    by sekarm
    Replies
    10
    Views
    676

    Re: Timer?

    Try this,..

    System.Threading.Thread.Sleep(TimeSpan.FromSeconds(5));


    Sorry if i am wrong..:cool:
  16. Replies
    3
    Views
    578

    Re: [2008] WorldMap in web page

    Thank you Mendhak,
    For your solution.. but i need sample code. could you provide it.


    Thank you,
    ...Sekar
  17. Replies
    3
    Views
    578

    [2008] WorldMap in web page

    Dear Experts,
    I came here for a query that is the world map has shown in the web page. In that web page the dot point has displayed or blinking in particular place. if User...
  18. Replies
    1
    Views
    521

    [2008] XmlHttpRequest

    Dear Friends,
    Could you anybody give the code of Ajax in Asp.net using XmlHttpRequest. i have searched but i cant get the correct code. i want code in both clientside and...
  19. Replies
    5
    Views
    733

    Re: [2008] Clientside Code To Run Frequently

    Thank you for your nice reply. It is a Control System Project. so we have to display control values (Temperature, Pressure) in single web page. The values are changed frequently so we need to display...
  20. Replies
    5
    Views
    733

    Re: [2008] Clientside Code To Run Frequently

    Dear Mendhak,
    Thank you for your reply. if we use AJAX it needs user interaction for updating the small portion of web page. But my requirement is without user interaction the...
  21. Replies
    5
    Views
    733

    [2008] Clientside Code To Run Frequently

    Dear All,
    I came here for one small confusion that is To Create a Javascript Code that Run Frequently to accessing the Server Side Code without user interaction. Can I use JavaScript...
  22. Replies
    12
    Views
    1,413

    Re: Asp.net with SerialPort

    Or else You manually set such things,

    this._serialport.PortName = "COM1";
    this._serialport.BaudRate = "9600";
    this._serialport.Parity = "None" or Something;

    In...
  23. Replies
    12
    Views
    1,413

    Re: Asp.net with SerialPort

    That is not a big issue. Its stores initial values get from system to the serial port class.

    Sekar
  24. Replies
    12
    Views
    1,413

    Re: Asp.net with SerialPort

    Here is my code using Visual Studio 2008.
    using System;
    using System.Collections;
    using System.Configuration;
    using System.Data;
    using System.Linq;
    using System.Web;
    using System.Web.Security;...
  25. Replies
    12
    Views
    1,413

    Re: Asp.net with SerialPort

    Dear Mendhak,
    In Code Behind page how to access the COM port in Web Server. Using System.IO.SerialPort Class it throws an exception 'UnAuthorised Security Exception'. What is...
  26. Replies
    12
    Views
    1,413

    Re: Asp.net with SerialPort

    Dear HoraShadow,
    I know the working difference of Windows and Web Applications. i found the third part component (Active Experts) will access the serial port in web server...
  27. Replies
    12
    Views
    1,413

    Re: Asp.net with SerialPort

    Dear pvbangera,
    Its an Web Application. i have to access serial port on webserver from remote station through website.

    Thanks,
    ...Sekar
  28. Replies
    12
    Views
    1,413

    Asp.net with SerialPort

    Dear Friends,

    I need your help. I need to access the serial ports on my webserver from an asp.net page. i develop one website that hosted on webserver. Using that website i access data from serial...
  29. Replies
    3
    Views
    734

    Re: Web.config in Asp.net website

    Dear Mendhak,
    Thank you for your example,.
    Thanks,
    Sekar M.
  30. Replies
    3
    Views
    734

    Web.config in Asp.net website

    Dear All,
    Is there possible to access more than one web.config file in website.

    thanks,
    Sekarm.
  31. Replies
    5
    Views
    762

    Re: Simple String problem

    Dear aspnetprog,
    As Danasegarane told you have add string file in Arraylist. Use ArrayList.Contains function you may check the current file is added or not. then you may not...
  32. Replies
    5
    Views
    762

    Re: Simple String problem

    Dear aspnetprog,
    As i think you split the string using String.Split function according to ":" then validate the string. for example,


    string sfile = "Patient Name: GEORGE...
  33. Re: Refeshing thumbnails when scrolling help required

    Hi,
    i am also searching the above requirement,could please give me the code for the above thread and you got a soution for the problem, if you got it send that also.

    Thanks In Advance,...
Results 1 to 33 of 33



Click Here to Expand Forum to Full Width