why dont you use a regular asp:button and create a CSS class for it. That way you can have anytext you want on the graphical button. Like: in the CSS file, create the css class for this INPUT.PCTButton { width:129px; /*image with*/ height:25px; /*image height*/ background-image: URL(img/ButtonBg1.gif); /*the image background*/ border: 0px; background-color:Transparent; Cursor:hand; } serkan
User 821818
Posts
-
Image Button with Text -
Security of TLB librariesHi, I am having a problem to create COM object in my web application. The object provided by Symantec, it is a SDK library for ACT. The problem is I can NOT create the object in web applications. However, there is no problem with desktop applications or VBScripts. The following code work in vb.net/VBScript ------------------------------------------ Dim objDatabase As Object = CreateObject("ACTOLE.DATABASE") objDatabase.Open("c:\Database\Members.dbf") dim objUsers As Object = objDatabase.Users() ----------------------------------------- It perfectly creates the object and gives me all the users in a recordset. I think I need to play with security of this object to make the object creatable by {machine.ASPNET} user. How can I set custom security to ACTOLE.DATABASE object? Thanks a lot serkan