User Profile
Collapse
Profile Sidebar
Collapse
SirZizo
Last Activity: May 16 '13, 03:39 PM
Joined: Apr 21 '13
Location:
-
i am test your code and there is no a problem -
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? -
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;Leave a comment:
-
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) {Leave a comment:
No activity results to display
Show More
Leave a comment: