Avatar of Russ Suter
Russ Suter
 asked on

Open a URL in a new Window under .NET Framework 1.1

I need to dynamically create a hyperlink on a web page that opens a URL in a new window. This is using the .NET Framework 1.1 so I can't use the LinkButton with the OnClientClick() property which is how I'd normally do it. How can I dynamically create a link on a page and have that link open a new window? Maybe there's a tidy javascript solution that I'm missing?
ASP.NETVisual Basic.NETJavaScript

Avatar of undefined
Last Comment
samtran0331

8/22/2022 - Mon
ASKER CERTIFIED SOLUTION
DotNetThinker

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
samtran0331

OnClientClick="somefunction();" in .Net 2.0 is effectively the same as using:

linkbutton.attributes.add("onclick","somefunction();")

Experts Exchange has (a) saved my job multiple times, (b) saved me hours, days, and even weeks of work, and often (c) makes me look like a superhero! This place is MAGIC!
Walt Forbes