/ Published in: VB.NET
This code can be used to save a file!
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
Private sub savefile() Dim dialog As New SaveFileDialog dialog.ShowDialog() Dim write As New IO.StreamWriter(dialog.FileName) write.Write(TextBox1.Text) End sub