CopyText / TextCopy

A cross platform package to copy text to and from the clipboard.
MIT License
513 stars 41 forks source link

Works on localhost but not after publish #880

Open ravipersaud opened 6 days ago

ravipersaud commented 6 days ago

I am using TextCopy in my dotnet framework application. It is working fine when used locally but it does not work in my published website.

Imports TextCopy

    Dim cb As New Clipboard
    cb.SetText(TextBox1.Text)
    TextBox2.Text = ClipboardService.GetText()