Ahoj.
Nevim cim to je ale v jinej programu pouzivam tu stejnou funkci ale tady me nefunguje a hazi to error "Vstupní řetězec nemá správný formát."
string Stranka_Prevedeno;
public void FindURLToDownload()
{
WebClient Download = new WebClient();
string URL = String.Format(URLTextBox.Text);
byte[] stranka = Download.DownloadData(""+URL+"");
Byte2String(stranka);
if (URLTextBox.Text == "")
{
URLTextBox.Text = "Zadej URL";
}
else
{
NajdiSoubor();
}
}
public void Byte2String(byte[] Stranka)
{
Encoding Enc = Encoding.UTF8;
Stranka_Prevedeno = Enc.GetString(Stranka);
}
public void NajdiSoubor()
{
string DownloadLink = String.Format(Stranka_Prevedeno);
string DownloadLink2 = DownloadLink.Substring(DownloadLink.IndexOf("file=content/")+13);
string[] DownloadLink3 = DownloadLink2.Split("&".ToCharArray(),2);
URLTextBox.Text = DownloadLink3[0];
}
Nevite nekdo proc mi to pise ? ja teda vubec nevim :(