User Profile

Collapse

Profile Sidebar

Collapse
SirZizo
SirZizo
Last Activity: May 16 '13, 03:39 PM
Joined: Apr 21 '13
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • SirZizo
    replied to replacing double \\ with single \
    i am test your code and there is no a problem
    See more | Go to post

    Leave a comment:


  • SirZizo
    started a topic Kerberos Authentication C#

    Kerberos Authentication C#

    I have a login webform with username and password and a mainmenu form, I would like to make my logon secure using Kerberos protocol (or any other one) in order to open the mainmenu form (and of course my credentials are stored in a sql server db). How can I do that?
    See more | Go to post

  • you can use openfiledialog control

    then use
    Code:
      
    txtre.Text = Application.ExecutablePath.Substring(0, Application.ExecutablePath.LastIndexOf("\\")) +
                     "\\Result.docx";
    
     private void btnres_Click(object sender, EventArgs e)
            {
                openFileDialog2.CheckFileExists = false;
                openFileDialog2.FileName = txtre.Text;
    ...
    See more | Go to post

    Leave a comment:


  • SirZizo
    replied to Get text from website to c# application
    this method can help you


    Code:
     public static String readFromLink(string URL)
            {
                HttpWebRequest request = (HttpWebRequest)WebRequest.Create(URL);
                request.Method = "GET";
                HttpWebResponse response = (HttpWebResponse)request.GetResponse();
                String data = null;
                if (response.StatusCode == HttpStatusCode.OK)
                {
    ...
    See more | Go to post
    Last edited by Rabbit; Apr 22 '13, 05:50 AM. Reason: Please use code tags when posting code.

    Leave a comment:

No activity results to display
Show More
Working...