This is a migrated thread and some comments may be shown as answers.

how to find out the version of telerik rad editor through code ?

8 Answers 424 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Venky
Top achievements
Rank 2
Venky asked on 06 Sep 2012, 06:33 AM
how to find out the version of telerik rad editor which we are using in the project, through code ?

8 Answers, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 06 Sep 2012, 06:47 AM
Hi,

You can try the suggestions in this forum: How can I get the assembly file version.

Greetings,
Rumen
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Venky
Top achievements
Rank 2
answered on 06 Sep 2012, 09:55 AM
i want the version of the telerik radeditor only....
0
Rumen
Telerik team
answered on 06 Sep 2012, 10:16 AM
Hello,

RadEditor is embedded in the Telerik.Web.UI.dll file and you should take the version of this assembly.

All the best,
Rumen
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Venky
Top achievements
Rank 2
answered on 06 Sep 2012, 12:00 PM
how to find the version through code...?
0
Rumen
Telerik team
answered on 06 Sep 2012, 12:58 PM
Hello,

Did you test the provided code in the StackOverflow article How can I get the assembly file version?

Greetings,
Rumen
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Venky
Top achievements
Rank 2
answered on 07 Sep 2012, 05:00 AM
Yes...........!

but It returns null.
0
Rumen
Telerik team
answered on 10 Sep 2012, 01:15 PM
Hi,

The following code returns the exact version of the Telerik.Web.UI.dll assembly:

using System.Reflection;
 
protected void Page_Load(object sender, EventArgs e)
 {
        string assemblyVersion = Assembly.LoadFile(Server.MapPath("~/bin/Telerik.Web.UI.dll")).GetName().Version.ToString();
        Response.Write(assemblyVersion);
}



All the best,
Rumen
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Venky
Top achievements
Rank 2
answered on 20 Sep 2012, 09:39 AM
Thank You So Much.....

Rumen
Tags
Editor
Asked by
Venky
Top achievements
Rank 2
Answers by
Rumen
Telerik team
Venky
Top achievements
Rank 2
Share this question
or