Click here to Skip to main content
15,891,921 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Duration of audio files Pin
Christian Graus5-Jan-09 4:37
protectorChristian Graus5-Jan-09 4:37 
GeneralRe: Duration of audio files Pin
Abhijit Jana5-Jan-09 5:07
professionalAbhijit Jana5-Jan-09 5:07 
GeneralRe: Duration of audio files Pin
Christian Graus5-Jan-09 5:10
protectorChristian Graus5-Jan-09 5:10 
GeneralRe: Duration of audio files Pin
Abhijit Jana5-Jan-09 5:13
professionalAbhijit Jana5-Jan-09 5:13 
GeneralRe: Duration of audio files Pin
Christian Graus5-Jan-09 5:18
protectorChristian Graus5-Jan-09 5:18 
GeneralRe: Duration of audio files Pin
Abhijit Jana5-Jan-09 5:25
professionalAbhijit Jana5-Jan-09 5:25 
GeneralRe: Duration of audio files Pin
Christian Graus5-Jan-09 6:04
protectorChristian Graus5-Jan-09 6:04 
QuestionRun .NET ActiveX control on IE 7.0 machine that doesnt have .NET installed. Pin
Dattatraya K5-Jan-09 2:52
Dattatraya K5-Jan-09 2:52 
I created a DLL (class library) on C#.NET (2005) and want
to use it as an ActiveX control on a web page (html).
I have checked the box for Make "assembly COM visible" in the
project properties before I build the DLL. Code does do much,

here is my C# code for ctrl

namespace MyActiveXctrlLib
{
public partial class MyUserCtrl : UserControl
{
public string setName
{
set
{
txtName.Text = value;
}
}
public MyUserCtrl()
{
InitializeComponent();
}
}
}

here is my HTML





<title>Untitled Page


<object id="myControl1" name="myControl1" classid="MyActiveXctrlLib.dll#MyActiveXctrlLib.MyUserCtrl" width="288" height="50">








function doScript()
{
myControl1.setName = frm.txt.value;
}





on button click doScript(); is executed .
it sets the setName property of myControl1 i.e. WinForm control.

this code working successfully on IE 7.0 machine having .NET installed on them
but is not working on Machine those dnt have .NET installed on them.

not checked on IE 6.0.

Thanks in advance .
DaTtA Smile | :)
way2datta@gmail.com
AnswerRe: Run .NET ActiveX control on IE 7.0 machine that doesnt have .NET installed. Pin
Christian Graus5-Jan-09 4:12
protectorChristian Graus5-Jan-09 4:12 
QuestionRemoving source control from web site project Pin
Colin Angus Mackay5-Jan-09 2:25
Colin Angus Mackay5-Jan-09 2:25 
AnswerRe: Removing source control from web site project Pin
Vimalsoft(Pty) Ltd5-Jan-09 2:36
professionalVimalsoft(Pty) Ltd5-Jan-09 2:36 
GeneralRe: Removing source control from web site project Pin
Colin Angus Mackay5-Jan-09 2:43
Colin Angus Mackay5-Jan-09 2:43 
GeneralRe: Removing source control from web site project Pin
Rajganesh Mountbatton5-Jan-09 19:10
Rajganesh Mountbatton5-Jan-09 19:10 
AnswerRe: Removing source control from web site project Pin
Aman Bhullar5-Jan-09 2:40
Aman Bhullar5-Jan-09 2:40 
GeneralRe: Removing source control from web site project Pin
Abhijit Jana5-Jan-09 2:51
professionalAbhijit Jana5-Jan-09 2:51 
GeneralRe: Removing source control from web site project Pin
Colin Angus Mackay5-Jan-09 3:10
Colin Angus Mackay5-Jan-09 3:10 
GeneralRe: Removing source control from web site project Pin
Colin Angus Mackay5-Jan-09 3:06
Colin Angus Mackay5-Jan-09 3:06 
GeneralRe: Removing source control from web site project Pin
Colin Angus Mackay5-Jan-09 3:33
Colin Angus Mackay5-Jan-09 3:33 
GeneralRe: Removing source control from web site project Pin
Abhijit Jana5-Jan-09 3:36
professionalAbhijit Jana5-Jan-09 3:36 
QuestionCustom ListBox (WebControl derivated) Pin
Dirso5-Jan-09 2:09
Dirso5-Jan-09 2:09 
QuestionHow can I get physical path of a class (.cs) file? Pin
yasir10245-Jan-09 0:57
yasir10245-Jan-09 0:57 
AnswerRe: How can I get physical path of a class (.cs) file? Pin
moon_stick5-Jan-09 1:04
moon_stick5-Jan-09 1:04 
AnswerRe: How can I get physical path of a class (.cs) file? Pin
yasir10245-Jan-09 1:23
yasir10245-Jan-09 1:23 
GeneralRe: How can I get physical path of a class (.cs) file? Pin
Colin Angus Mackay5-Jan-09 2:21
Colin Angus Mackay5-Jan-09 2:21 
AnswerRe: How can I get physical path of a class (.cs) file? Pin
Aman Bhullar5-Jan-09 4:52
Aman Bhullar5-Jan-09 4:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.