Click here to Skip to main content
15,919,931 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: SSL Connection? Pin
Jason Weibel11-Sep-06 6:24
Jason Weibel11-Sep-06 6:24 
QuestionCommon Application error in ASP.net Pin
Skanless7-Sep-06 6:20
Skanless7-Sep-06 6:20 
AnswerRe: Common Application error in ASP.net Pin
Guffa7-Sep-06 13:05
Guffa7-Sep-06 13:05 
AnswerRe: Common Application error in ASP.net Pin
Amit Kumar G7-Sep-06 13:31
Amit Kumar G7-Sep-06 13:31 
GeneralRe: Common Application error in ASP.net Pin
Skanless7-Sep-06 13:40
Skanless7-Sep-06 13:40 
GeneralRe: Common Application error in ASP.net Pin
Amit Kumar G7-Sep-06 17:14
Amit Kumar G7-Sep-06 17:14 
GeneralRe: Common Application error in ASP.net Pin
Skanless7-Sep-06 17:24
Skanless7-Sep-06 17:24 
GeneralRe: Common Application error in ASP.net Pin
Amit Kumar G11-Sep-06 9:34
Amit Kumar G11-Sep-06 9:34 
When the application is run first time on the user machine, which is on a remote location, the application asks to download the activeX controls. This will initiate the process of installing the cab file related to a particular control to the user machine. All the information related to the control is downloaded in the form of cab file, which is used later to access the control.
The OBJECT tag in HTML file identifies the ActiveX control. If the control has been stored in a .cab file, OBJECT must include a CODEBASE attribute that specifies the URL for this .cab file.
The following sample HTML file demonstrates how the OBJECT and CODEBASE attribute are used.
Example:
<OBJECT CLASSID="clsid:abcdef….."
CODEBASE="http://webserver/test.cab"
ALIGN="CENTER" WIDTH=270 HEIGHT=26 ID="T1"><PARAM NAME="Interval" VALUE=1000>
<PARAM NAME="Enabled" VALUE=1></OBJECT>
Microsoft Internet Explorer 4.0 or later versions handle the OBJECT and the CODEBASE attribute in the following manner for accessing controls stored in cabinet files.
• Parses the OBJECT and searches for the CODEBASE attribute.
• Locates the .cab file identified by the CODEBASE attribute.
• Expands the files found in the .cab file.
• Copies the expanded files to the user's computer (the default directory is \windows\occache).
• Registers the objects and/or files that require registration.
• Calls the Component Object Model (COM) CoCreateInstance function to create an instance of the specified object.
For eample
Following is a Textbox Object created using the <OBJECT> tags in the XYZ application. The Classid, which is the universal id, which specifies the physical location of the library, is used to refer the date Object in to the ASP pages. This date TextBox object is having a standard input format and all the attributes are set using the <PARAM> tag.
Example
<OBJECT VALIGN=CENTER Class=List classid="clsid:CC696B63-4159-11D0-BDCB-0020A90B183A" id=InspectDate NAME=txtInspectDate style="HEIGHT:22px; WIDTH:70px; LEFT: 0px; TOP: 0px" VIEWASTEXT>

<PARAM NAME="_Version" VALUE="393216">
.......
</OBJECT>

But please note, here the story does not end. Because in your case, we need to find out which Activex control is creating problem. But definitely above things can be good start point for you.


Amit
QuestionHow to from a textbox template column Pin
Sheri Zdroik7-Sep-06 6:01
Sheri Zdroik7-Sep-06 6:01 
AnswerRe: How to from a textbox template column Pin
Jason Weibel7-Sep-06 9:12
Jason Weibel7-Sep-06 9:12 
QuestionChange separator on dropdown list Pin
John Gathogo7-Sep-06 6:01
John Gathogo7-Sep-06 6:01 
AnswerRe: Change separator on dropdown list Pin
Guffa7-Sep-06 8:15
Guffa7-Sep-06 8:15 
GeneralRe: Change separator on dropdown list Pin
John Gathogo7-Sep-06 19:21
John Gathogo7-Sep-06 19:21 
AnswerRe: Change separator on dropdown list Pin
Guffa8-Sep-06 8:56
Guffa8-Sep-06 8:56 
QuestionHow set a ControlParameter to a textbox control in a FormView? Pin
JimFeng7-Sep-06 5:23
JimFeng7-Sep-06 5:23 
AnswerRe: How set a ControlParameter to a textbox control in a FormView? Pin
minhpc_bk8-Sep-06 1:56
minhpc_bk8-Sep-06 1:56 
Questioncode being displayed at the top of the page Pin
todd.010111017-Sep-06 5:16
todd.010111017-Sep-06 5:16 
AnswerRe: code being displayed at the top of the page Pin
Jason Weibel7-Sep-06 9:00
Jason Weibel7-Sep-06 9:00 
QuestionRe: code being displayed at the top of the page Pin
todd.010111017-Sep-06 15:25
todd.010111017-Sep-06 15:25 
AnswerRe: code being displayed at the top of the page Pin
Jason Weibel8-Sep-06 3:18
Jason Weibel8-Sep-06 3:18 
GeneralRe: code being displayed at the top of the page Pin
todd.010111018-Sep-06 3:39
todd.010111018-Sep-06 3:39 
GeneralRe: code being displayed at the top of the page Pin
Jason Weibel8-Sep-06 4:00
Jason Weibel8-Sep-06 4:00 
GeneralRe: code being displayed at the top of the page Pin
todd.010111018-Sep-06 4:21
todd.010111018-Sep-06 4:21 
GeneralRe: code being displayed at the top of the page Pin
todd.010111018-Sep-06 4:23
todd.010111018-Sep-06 4:23 
GeneralRe: code being displayed at the top of the page Pin
Jason Weibel8-Sep-06 7:26
Jason Weibel8-Sep-06 7:26 

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.