8 Answers, 1 is accepted
0
Hi,
You can try the suggestions in this forum: How can I get the assembly file version.
Greetings,
Rumen
the Telerik team
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
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
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
Hello,
Did you test the provided code in the StackOverflow article How can I get the assembly file version?
Greetings,
Rumen
the Telerik team
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.
but It returns null.
0
Hi,
The following code returns the exact version of the Telerik.Web.UI.dll assembly:
All the best,
Rumen
the Telerik team
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
Rumen