Search:

Type: Posts; User: zisohel

Search: Search took 0.02 seconds.

  1. Replies
    5
    Views
    638

    VS 2005 Re: Automatically redirect to the alive URL

    Thanks for your suggestion. Obviously it is better to have an individual machine for load balancing. But before we go for a load balancing machine we need a solution for minimizing the current...
  2. Replies
    5
    Views
    638

    VS 2005 Re: Automatically redirect to the alive URL

    Dear Gray,

    Thanks for your response and for that document. We are using windows 2003 server in that servers and these servers are not in my direct control. Our system team look after that servers....
  3. Replies
    5
    Views
    638

    VS 2005 Automatically redirect to the alive URL

    Dear all,

    I have a web application running from 2 servers. I'm using 2 servers, because if 1 is not responding for any failure user can access the application from other server URL. Now I want to...
  4. Replies
    4
    Views
    593

    Re: select range out of a to z

    i an coding the ceaser cipher algorithm for my homework. I did it. But the problem is, in this code i want to keep unchange the characters ".", "?" etc. So i need that statement. I can do it using...
  5. Replies
    4
    Views
    593

    Re: select range out of a to z

    randomly.
  6. Replies
    4
    Views
    593

    select range out of a to z

    I want to select a character from a word, which is other than a to z. what will the c++ statement. For example:
    "MY NAME IS ABC. THIS IS A TEST"
    From this sentence i want to take only the...
  7. Re: Error 1068: the dependency server or group failed

    Dear axion,

    I've searched on google but don't get the proper solution. If you know the solution can you please tell me how can I solve this?
  8. Error 1068: the dependency server or group failed

    When I'm trying to start the MSSQLServer Service then it shows Error 1068: the dependency server or group failed. I'm using SQL Server 2000.
    How can I start that service?
  9. Re: Problem in Regular Expression Validator

    Dear Mendhak,

    Thanks for the solution. It works.
  10. [RESOLVED] Problem in Regular Expression Validator

    I want to use regular expression validator to validate a textbox in ASP.NET 2005. For example, if I want to use the date format in dd/mm/yyyy then how can I write the custom expression in regular...
  11. Replies
    5
    Views
    961

    Re: Copy a table in SQL Server

    When I run that query then the primary key of the first table does not transfer to the new table. It only shows not null.
  12. Replies
    5
    Views
    961

    Re: Copy a table in SQL Server

    Dear Mendhak,

    Thanks for ur reply. It works only for coping a table with data but all properties are not transferred.

    How can I transfer all properties.
  13. Replies
    5
    Views
    961

    Copy a table in SQL Server

    Hi,

    I have a table test(id,name,address) in SQL Server. I want to create a duplicate table test1as like as test table by using SQL Query. All properties of test table should be copy in the new...
  14. Replies
    3
    Views
    660

    Re: generate mail from application

    Thanks axion_sa for your response. I used the following code


    MailMessage mail = new MailMessage();
    mail.To = "me@mycompany.com";
    mail.From = "you@yourcompany.com";
    mail.Subject = "this is a...
  15. Replies
    3
    Views
    660

    generate mail from application

    Hi

    I have an web based helpdesk application in which users entered their problem by selecting an IT professional who can solve his/her problem and submit it. Then the IT professional get the issue...
  16. Re: Retrieve value from dynamically created textbox

    Dear stanav

    Thanks for your reply. Can you please give me some example code?
  17. Retrieve value from dynamically created textbox

    Hi

    I am creating text boxes dynamically into a place holder using the following code:



    int NumberOfControls = Convert.ToInt32(TextBox1.Text);
    for (int counter = 1; counter <=...
  18. Replies
    4
    Views
    562

    Re: Backup SQL Server Database

    Thanks for your response but I don't want to take backup from the SQL Server. I need to take backup from the front-end.
  19. Replies
    4
    Views
    562

    Backup SQL Server Database

    How can I take database (SQL Server 2000) backup from asp.net using C#.

    -Zahir
  20. Replies
    9
    Views
    822

    Re: how to retrieve active directory objects

    Thanks axion_sa it works. You said unless using the form authentication I can't retrieve the password. How can I retrieve the password from the Form authentication? I want to verrify the user name...
  21. Replies
    9
    Views
    822

    Re: how to retrieve active directory objects

    Dear Mendhak,

    Thanks for your reply. How can I retrieve user name and password from Windows Authentication.
  22. Replies
    9
    Views
    822

    how to retrieve active directory objects

    Hi,

    I want to develop an application in which I can use active directory objects. How can I retrieve user name, password and Domain from the active directory? I want to log on my software using...
  23. Replies
    7
    Views
    954

    Re: Lostfocus option in C#

    Please response quickly.
  24. Replies
    7
    Views
    954

    Re: Lostfocus option in C#

    No, I don't need the page to postback. Is it possible without calling a javascript mehtod?
  25. Replies
    7
    Views
    954

    Re: Lostfocus option in C#

    Suppose I have more than one textbox for ID, Name, Address etc. After giving ID in the first textbox when I am leaving the textbox then I want to show the search result of the respective ID in the...
  26. Replies
    7
    Views
    954

    Lostfocus option in C#

    How can I use Lostfocus(used in VB) option in C#
  27. Replies
    12
    Views
    906

    Re: Back to the previous form

    Thanks for your answer. I really want to do that.
  28. Replies
    12
    Views
    906

    Re: Back to the previous form

    Suppose I have two forms form1 and form2. In form1 user have to put the user id and password. If it is valid then the form2 will appear and form1 should not be visible. After doing the operation at...
  29. Replies
    12
    Views
    906

    Re: Back to the previous form

    It's a desktop application.
  30. Replies
    12
    Views
    906

    Back to the previous form

    How can I back to the previous form without loosing the data of the previous form.
  31. Replies
    0
    Views
    490

    Full screen problem

    Hi,

    I want to open my web page full screen when I run this. How I can do this?

    Sohel
  32. Thread: Restore values

    by zisohel
    Replies
    1
    Views
    614

    Restore values

    Hi,

    How can I retrieve value from other form, which I have entered? This problem is for desktop application.


    Sohel
  33. Replies
    2
    Views
    596

    Re: Dropdownlist problem

    Dear Rajib Bhai,

    Thank you for your quick reply.

    Sohel
  34. Replies
    2
    Views
    596

    [RESOLVED] Dropdownlist problem

    How can I add value in the dropdown list box from the database. I want to add values at form loading.

    Sohel
  35. Thread: Restore values

    by zisohel
    Replies
    2
    Views
    488

    Re: Restore values

    Dear HoraShadow,

    Thanks for your reply. I followed your solution and it works.

    Sohel
  36. Thread: Restore values

    by zisohel
    Replies
    2
    Views
    488

    Restore values

    I have two web forms like frm1 and frm2. In frm1 I put some values in the text fields and in frm2 I show the values I entered in frm1 (through session variable).

    Now the problem is, if I want to...
  37. Replies
    3
    Views
    473

    Re: Use of String functions

    Thanks for your answer.

    Sohel
  38. Replies
    3
    Views
    473

    Use of String functions

    How can I use SUBSTRING and INSTRING in C# ?
  39. Thread: logout problem

    by zisohel
    Replies
    4
    Views
    476

    Re: logout problem

    Dear noielen,

    Thanks for your response.

    I Just redirect the logon page on LOG OUT Click.

    If you have any better idea Please response.


    Sohel
  40. Thread: logout problem

    by zisohel
    Replies
    4
    Views
    476

    logout problem

    Dear All,

    I have developed an web application. I am running it with IE 6.0.

    But now I am facing a problem. when someone logout from the system then he must have to have login again. But the...
Results 1 to 40 of 40



Click Here to Expand Forum to Full Width