While I agree that in some instances you should be wary of the government, shouldn't we also be wary of corporations that have the money, reach and power of many governments?
Having good regulations is essential for population protection (from corps trying to make more money than the other guy). At least we can vote in and out governments, but these days your choice of consumer tech is now only a few very large players. And we also know "consumers" are idiots and need protecting, it's literally the government's job to deliver those services.
Good news, and about time too, but with Office 2019 perpetual licence no longer being able to edit files, is this completely stuffing up the entire suite, or removing the ability to edit files from within OneDrive? Sounds stupid to have a kill switch like that, and they could totally fine a way to update the certificate if that's the reason behind it..
Question
The Grasshopper
EDIT:
I had the last post all wrong.
My Question is I need to know how to add a link from a text box when i enter a favorite from a text box selecting btnFavorite.
using System; public partial class _Default : System.Web.UI.Page { protected void btnCreateFolder_Click(object sender, EventArgs e) { TreeNode xTN = new TreeNode(); if (tvTree.SelectedNode == null) { lblAnswer.Text = "Nothing Selected"; return; } { xTN.Text = txtBoxFolderName.Text; xTN.NavigateUrl = ""; xTN.Target = "_blank"; tvTree.SelectedNode.ChildNodes.Add(xTN); } } [b] How do i add a link from a textbox to this?[/b] protected void btnAddFavorite_Click(object sender, EventArgs e) { TreeNode xFN = new TreeNode(); { xFN.Text = txtBoxEnterFav.Text; xFN.NavigateUrl = ""; xFN.Target = "_blank"; tvTree.SelectedNode.ChildNodes.Add(xFN); } } }Edited by The GrasshopperLink to comment
https://www.neowin.net/forum/topic/704442-asp-with-c-need-help-with-child-nodes/Share on other sites
2 answers to this question
Recommended Posts