all groups > dotnet scripting > march 2004
dynamic code at runtime
Posted by Ronald Chan at 3/31/2004 12:05:00 PM
If I have a object, call it Foo. I want to be able to edit it dynamicly at
runtime (preferablely using scripting). VSA can do this but it uses up too
much memory so I won't use it. Is it possible to do it using
CSharpCodeProvider? So far I've only found examples to edit strings/ints/...
but no... more >>
Fire server side event from client side
Posted by Neil at 3/23/2004 1:46:08 AM
Hi
I have a number of HTML tables that are dynamically rendered from server side code. I've added an onClick event to the tables that fires a client side function (jscript) to redirect the user to an appropriate page using location.href
I need to capture this event some how on the server side so... more >>
Script with ActiveX control
Posted by KL at 3/22/2004 7:56:10 PM
Hi, all
I'm really sorry to repost this question again..
recently i'm using C# to write a WIndows Control library and i have register it to registry with regasm command
Everything went wrong when i try to call that from server but it work fine when i double click the html file to open it..
Whe... more >>
How do one use visual studio .net to write scripts?
Posted by Jacques Koorts at 3/20/2004 5:27:59 PM
Hi there,
I just bought .NET and would like to use it to write my scripts. I only
played about 15 minutes with it trying to see if there is an easy wizard to
create the environment for writing script files for WSH.
Have any of you get this to work? If so can you tell me the walk through in... more >>
Exposing of object properties in JScript.NET
Posted by Vladimir Semenov at 3/20/2004 11:27:57 AM
Hello,
I'm using JScript VSA engine in my application. I pass my C# objects to
script as global items. Properties/fields declared in C# classes are visible
from script code. But I want that script can use in similar way properties
not declared in the class - I have internal collection of name-... more >>
Opening windows and passing data
Posted by Evan Kontos at 3/17/2004 11:41:08 PM
I need to open a browser window from another browser window, pass some data
from a select tool to a select tool on the new page, modify the data and
then pass it back to the original window and the select tool and update it's
values. Need to do it on the client only w/no server side scripting. ... more >>
ActiveX Control
Posted by KL at 3/14/2004 5:21:09 PM
Hi, All
I dunno if it is correct to post this question here.. pls let me know if i'm wrong.. Thanks...
I use C# to write a WIndows Control library and i have register it to registry with regasm command
Now i try to load the control ni IE browser with the following comman
<OBJECT id="Control" CL... more >>
Get list of all machines nams
Posted by Oshadha at 3/11/2004 10:56:07 PM
Hi All
I have a small network, all the machines (about 10-15) connected with a hub. no active directory installed. there are 2 workgroups, but number of workgroups change. I'm developing a application and need to get a list of all the online machines in each workgroup. is this possible with win32_*... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
RenderControl method?
Posted by Zanoni at 3/10/2004 2:46:05 PM
I just started using ASP.NET yesterday (literally). I've been using ASP for some time, though.
This code is in mypage.aspx, and it works just as I intended, showing each table in a separately rendered grid:
for (int i = 0; i < 5; i++)
{ // iterate through dataset tables
grd0.DataSourc... more >>
Help with <a> tag...
Posted by Doug Swanson at 3/8/2004 4:48:52 PM
So on my page I'm using a literal to create the <a href='http://www.cnn.com'
target=_blank>some name </a> tag. Is there anyway to open the browser
maximized off of this link?
thanks
Doug
--
Doug Swanson
Senior Applications Developer
Synchrono, Inc
651.228.1772
dswanson@synchrono.com
... more >>
Change <link> href attribute dynamically
Posted by Amir Eshterayeh at 3/6/2004 12:04:31 PM
Dear Friends
I want to change the name of my css file dynamically so
as Mr. Jos Branders helped me, I can change the <head> tag into an HTML
control like this:
<head id="myhead" runat="server">
...permanent content here...
</head>
so that I can modify it from code like this:
Sub Page_L... more >>
|