Hi briankitt,
a reference solution,
you can show the upload button in user's personal folder only in your existing solution.
1. Open the file "CuteSoft_Client/CuteEditor/Dialogs/InsertGallery.apsx"
2. Find the method "protected override void OnPreRender(EventArgs args)" , about line 171
3. Add the following code to end of the above method
-
- string userfoler = "/" + "signed in user id";
- if (Context.Request.QueryString["C_GP"] != null && Context.Request.QueryString["C_GP"].IndexOf(userfoler) >= 0)
- {
- myuploadFile.Visible = true;
- }
- else
- {
- myuploadFile.Visible = false;
- }
Hope it helps.
Regards,
Jeff