ASPFriends.com 'aspngclient' list Archive - July 2002
Messages
Page: 12
launching client applications (6 replies)
ASPFriends.com 'aspngclient' list
can anyone point me in the right direction on how to launch a client application from an asp.net page? I understand why browsers don't let you cleanly do this due to security reasons but.... If it helps, I am in a controlled intranet environment and can install active x components on the client machines if need be... Thanks, g Send and receive Hotmail on your mobile device: http://mobile.msn.com
Readonly Fails in Netscape (4 replies)
ASPFriends.com 'aspngclient' list
Moved from [aspngwebcontrols] to [aspngclient] by James Avery javery@deluxeeng.com If I set a textbox's readonly attribute to True. It does not become readonly in Netscape. %@ Control Language "vb" AutoEventWireup "false" Codebehind "MR Entry General.ascx.vb" Inherits "MR.MR Entry General" targetSchema "http://schemas.microsoft.com/intellisense/nav4 0" % Anyone have a work around?
Intercept ImageButton (5 replies)
ASPFriends.com 'aspngclient' list
Moved from [aspngfreeforall] to [aspngclient] by Michiel van Otegem mvo@mail.aspnl.com This is probably something I should know, but can think of the best way to do it. Basically, I want to provide some type of confirmation button. I have an ImageButton (could be a link button, whatever) that does a postback with some information. What I want is to provide some type of Javascript Alert that will a...
onclick imagebutton (2 replies)
ASPFriends.com 'aspngclient' list
Moved from [aspngfreeforall] to [aspngclient] by Tony Stark IronMan@aspelite.com Any ideas why this doesn't work? script language "javascript" function goclaims() { document.location.replace "../webapplication2/webform1.aspx"; } /script asp:ImageButton onlick "goclaims();" id "Image5" onmouseover "this.className 'applyBorder'" onmouseout "this.className 'removeBorder'" runat "server" Width "24px" ...
Programmatically create OnClick Events (3 replies)
ASPFriends.com 'aspngclient' list
Is there a way to programmatically create OnClick Events for a programmatically created Web Forms Control such as a Label? For Example: I have a panel that I am adding Labels to programmatically on page Load: Label myLabel new Label(); myLabel.Text "Label text goes here br "; myLabel.ID "myID"; panel1.Controls.Add(myLabel); How do I create an OnClick event for myLabel that calls a subroutine? Norm...
ImageButton and Javascript (2 replies)
ASPFriends.com 'aspngclient' list
Moved from [aspngfreeforall] to [aspngclient] by Marcie Jones marciejones@yahoo.com What is wrong with this? It doesn't work. script language "javascript" function goclaims() { window.location.assign("../webapplication2/webform1.aspx"); } /script asp:ImageButton id "Image5" onmouseover "this.className 'applyBorder'" onmouseout "this.className 'removeBorder'" runat "server" Width "24px" Height "18p...
Div in UserControl not rendering in Netscape (3 replies)
ASPFriends.com 'aspngclient' list
Copied from [aspngfreeforall] to [aspngclient] by Marcie Jones marciejones@yahoo.com I have a div within a usercontrol within a multipage control where I set the innertext property. In IE the text is rendered. In Netscape 4.7 the div is rendered but the innertext is not. Very strange because I can walk throught the debugger and see the value set, but it is only rendered in IE. Any ideas. p.s. work...
Readonly/Enabled for textbox in Netscape fails (2 replies)
ASPFriends.com 'aspngclient' list
Moved from [aspngfreeforall] to [aspngclient] by Tim Musschoot Tim.Musschoot@rug.ac.be I can't get Readonly or Enabled to work in Netscape 4.7 for a textbox. I created a very simple aspx page with 2 textbox's and then set the readonly t and enabled F properties. In Netscape 4.7 it didn't work. aspx page below HTML HEAD meta name "vs targetSchema" content "http://schemas.microsoft.com/intellisense/...
User Control Question (4 replies)
ASPFriends.com 'aspngclient' list
Moved from [aspngfreeforall] to [aspngclient] by Yannick Smits dotnet@stepcompany.com I'm trying to create a user control that is in my opinion fairly complex, and am not sure exactly how to go about it. What I am trying to do is create an enhanced IFrame and embed all the additional code within the user control. The idea is that someone could drop the control into there ASPX page and it would ren...
anchor link style (5 replies)
ASPFriends.com 'aspngclient' list
Moved from [aspngfreeforall] to [aspngclient] by Marcie Jones marciejones@yahoo.com Hi, I'm having a heck of a time making the style of my links perform the way I want them to. In my style sheet I have the following: a:active {color: #000000; text decoration: underline;} a:link {color: #000000; text decoration: underline;} a:hover {color: #cc0000; text decoration: none;} a:visited {color: #000000;...
Please help! Problems with positioning (9 replies)
ASPFriends.com 'aspngclient' list
Hi, I am trying to develop a css template for the web pages of my web site. I am running into some real difficulty with my div positioning. If someone would please take a moment to look at my style sheet I would greatly appreciate it. I am trying to get my page to display like this: Header TopMenu Content (with a bunch of div's within this element to create columns) Footer The problem is that the ...
simple Q: pop-up box (4 replies)
ASPFriends.com 'aspngclient' list
Hi guys, I know how to do an "alert" in javaScript. How do I make a pop up box in .net that has ok and cancel buttons and can positon the box at a specifc position? Thanks Join the world s largest e mail service with MSN Hotmail. http://www.hotmail.com | ASP.net DOCS http://www.aspng.com/docs | [aspngfreeforall] member Tim.musschoot@rug.ac.be YOUR ID | http://www.asplists.com/aspngfreeforall JOIN/...
Datagrids (2 replies)
ASPFriends.com 'aspngclient' list
Moved from [aspngfreeforall] to [aspngclient] by Yannick Smits dotnet@stepcompany.com Does anyone know how to set add a vertical scrollbar to a datagrid. I only want to display about 20 lines max and let the user scroll through the rest? Original Message From: Paul Matthews [mailto:paul@cdsm.co.uk] Sent: 11 July 2002 10:15 To: aspngfreeforall Subject: [aspngfreeforall] Debuging Hi All Can anyone t...
Frames and Web controls (4 replies)
ASPFriends.com 'aspngclient' list
Hi Does anyone know how to work with frames in VB.net I have a web control in my top frame and when I click on it, I want to fill the bottom frame with data depending on what the user selected in the top frame. This was ok with HTML and vbscript, I just used .... parent.frames("Framename").location.href 3D "Page1.asp?" is there a similar thing for VB.net?
dynamic positioning of div footer (3 replies)
ASPFriends.com 'aspngclient' list
Hi, I have an aspx page that is broken up into div's. The content div height can vary depending on the length of the text within. A footer div follows the content div. I have the position style elements set to absolute on the div's. My problem is that because the content div height can vary, I have to set the footer's top style value programmatically. I am trying to do so in a Page Load sub proced...
client side script (15 replies)
ASPFriends.com 'aspngclient' list
Moved from [aspngfreeforall] to [aspngclient] by Yannick Smits dotnet@stepcompany.com How does one launch a client side script from an asp control? script language "vbscript" sub test alert "boom" end sub /script asp:ImageButton id "ie" name "ie" BorderWidth "0" ImageUrl "images/ie.gif" Runat "server" / I've tried adding this right below the imagebutton: % ie.attributes.add("onclick", "launchApp")...
Client Side Confirmation For Delete (4 replies)
ASPFriends.com 'aspngclient' list
Moved from [aspngfreeforall] to [aspngclient] by Marcie Jones marciejones@yahoo.com I am trying to create a form with two buttons: Save and Delete. When the user clicks Save the normal server side event handler would work and the item would get saved. However when the user clicks Delete I would like to have a JavaScript confirm dialog come up and ask them if they really want to delete. If they cli...
Setting Focus on Web Form buttons (6 replies)
ASPFriends.com 'aspngclient' list
Moved from [aspngfreeforall] to [aspngclient] by Tim Musschoot Tim.Musschoot@rug.ac.be Hello I have a webform which has 2 buttons on it. If the user clicks into a textb ox, I would like the button next to it to become focussed so that when a us er hits 'Enter' on the keyboard, it causes this button event to be activate d. Otherwise, I would like the default button to be the active button. How do I...
Printing with tabstrips (2 replies)
ASPFriends.com 'aspngclient' list
If I print a page which uses TabStrip/Multipage controls the 1st pageview only is printed. Our application uses Tabstrips extensively with results and reports usually on the 3rd or 4th Tab/pageview. Can anyone tell me how to print specific tabs or all tabs? Cheers Will
ShowModal Window Targets (2 replies)
ASPFriends.com 'aspngclient' list
Moved from [aspngfreeforall] to [aspngclient] by Tim Musschoot Tim.musschoot@rug.ac.be I have a small application that allows the user to select an item from a Modal window. However, the Modal window is built up off several pages, and as soon as I click any link it opens in a new window. I was wondering if anyone knows what value I use to set the target to be that off the Modal window. Regards, Su...
RegisterClientScriptBlock (5 replies)
ASPFriends.com 'aspngclient' list
Moved from [aspngstart] to [aspngclient] by Tony Stark IronMan@aspelite.com Howdy howdy. I have a question. asp.net has the functions registerclientscriptblock, etc. for sending down script to be executed on the client side. I do notice that these are attached to the FORM element, not in the HEAD tag. I've read up and I know they have a reason (assigning it to a server control), but the problem is...
ie5 (2 replies)
ASPFriends.com 'aspngclient' list
Will users with IE5 be able to view my aspx pages?
web controls! (3 replies)
ASPFriends.com 'aspngclient' list
Moved from [aspngfreeforall] to [aspngclient] by Marcie Jones marciejones@yahoo.com Guys! Was just wondering if we could call a javascript function on a webcontrol( asp:Button )? Like we used to do for the usual HTML button control. Thanks SN
Java / JScript (2 replies)
ASPFriends.com 'aspngclient' list
Copied from [aspngcs] to [aspngclient] by Let the good times roll bbilbro@hotmail.com Hi all, Can someone tell me about the Javascript/JScript's usage?. I am using C# in ASP.NET to develop a web application. Do i need to use JScript to make this application browser independent?. Your feedback will help me to develop application properly, Regards, Venkat TIL, Tel: 91 4562356/583/585/588 92,4567622 ...
How to redirect page automatically after own setting time(eg.30sec,1min or 2) (2 replies)
ASPFriends.com 'aspngclient' list
Moved from [aspngvb] to [aspngclient] by Tim Tim.musschoot@rug.ac.be Hi Folks Anybody Know how to redirect page automatically after 60 seconds or own setting time(eg.30sec,1min or 2) from one page to another page in asp.net. Where can i get sample? (or) How to do that? Regards Dine
Ad
MBR BootFX
Best-of-breed application framework for .NET projects, developed by Matthew Baxter-Reynolds and MBR IT
 
 Copyright © Matthew Baxter-Reynolds 2001-2008. '.NET 247 Software Development Services' is a trading style of MBR IT Solutions Ltd.
Contact Us - Terms of Use - Privacy Policy - www.dotnet247.com