all groups > asp.net > april 2004 > threads for thursday april 29
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
IIS6 Restart
Posted by Ali.M at 4/29/2004 11:22:38 PM
Hi,
I heared that one of IIS6 new capabilities is it can keep all session state
variables when I restart the IIS.
When I change web.config and save it during the asp.net application runtime,
the application looses all session variables.
Am I missing some settings or this is by... more >>
CustomValidator query
Posted by KevinI at 4/29/2004 10:22:18 PM
I have a couple of CustomValidator components on an ASP.NET page, using C#
and VS. If there
are values in the validated fields the OnValidate events are triggered.
However, if they are blank, they are
not. I want to validate them for not blank and then, if they are not blank,
do some additional... more >>
print method in Javascript
Posted by Machi at 4/29/2004 9:41:04 PM
I have created a asp.net web form with one datagrid which is used to display some information in tabular format. However, in the page, there are 2 buttons which are "Save" and "Print", when i save the page, i can make the page saved without the 2 buttons in the saved page. However, when i try to pri... more >>
DropDownList help
Posted by Brett Baisley at 4/29/2004 9:06:20 PM
Hello
I am trying to populate an asp dropdownlist by doing the following:
ddlArtist.items.add(myReader.GetString(0), myReader.GetInt32(1))
However, this doesn't work. I am trying to add an item with a name, value
pair, but I can't seem to figure out how. Does anyone know how to do this?
... more >>
Programmatically download a file from server to client?
Posted by Richard Gl at 4/29/2004 8:56:04 PM
I am creating a VB.NET webform.
I need to download a file from the server to the client's machine
Can you direct me to resources for this?... more >>
redirect to logon page after session timeout
Posted by francois at 4/29/2004 7:22:09 PM
Hi,
I would like to redirect the user to the login page after the session time
out.
I tried to do a trick in the global.aspx.cs
protected void Application_BeginRequest(Object sender, EventArgs e)
{
object obj = Session["memberId"];
if (obj == null)
{
// do redirect
}
}... more >>
Need to dynamically add or remove the EditButton on a Editable DataList in VB.NET
Posted by jack at 4/29/2004 6:41:06 PM
Hello,
I have a editable DataList, and would like the Edit Button to be appear or
not appear dynamically based on the access the logged in person has.
I have tried to use the visible=false, with no luck.
Any help would be great an example in VB.NET would be the most helpful.
Thanks in a... more >>
forcing a page reload?
Posted by WAZOO at 4/29/2004 6:36:03 PM
Sorry if this is obvious to everyone (except me). I've done a Google search
and I'm not seeing anything encouraging that addresses my issue.
My very large multispecialty medical practice needs to alert various nurses
and med techs - squirreled away in back offices - when an arrived parient
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Enabled property conflicts with ViewState?
Posted by Cipher at 4/29/2004 6:25:39 PM
I've built a ASP.Net webpage with a Textbox that is meant to hold a date
chosen from a JavaScript calendar on the page. The default value for this
control is handled during the page load event as follows...
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Hand... more >>
Why/Why not isPostBack is used when creating controls at run-time ?
Posted by Anand Sagar at 4/29/2004 6:03:56 PM
I have a Panel1 and button1 on my webform. At runtime, I create 2 textboxes.
I do it at the Page_Load event. I put the code within the " If Not
isPostBack"
For the button click event, I will do a post-to-database coding and then
show the same page again. I put EnableViewState = True for the t... more >>
posting daqta to an asp.net page from a console application
Posted by Ollie at 4/29/2004 5:41:55 PM
I have an aspx page that contains a web control that contains 2 text boxes
and button to submit the text. I am trying to submit text and collect the
response from a console application, but it is not working correctly it is
just returning the original page I am expecting it to return the a
subse... more >>
Do you have an explanation for this?
Posted by Pravin A. Sable at 4/29/2004 5:30:00 PM
Dear All
Error mentioned below this e-mail was NOT fixed.
1) After user ASP.net was given write privileges.
2) After giving write permission in IIS and Windows Explorer.
It was fixed,
After installing SQL Server 2000 Developer edition on my machine.
Can anybody tell, what is that SQL Ser... more >>
Javascript return value
Posted by Srinivasan at 4/29/2004 4:49:07 PM
I want to include javascript confirm inside the Button_Click even procedure and contine the process based on the user selection. The real problem is how to assign javascript confirm return value to the private variable declared inside Button_Click event. Please any one help me.
---
Posted using ... more >>
Javascript return value
Posted by DotNetJunkies User at 4/29/2004 4:28:48 PM
I want to include javascript confirm inside the Button_Click even procedure and contine the process based on the user selection. The real problem is how to assign javascript confirm return value to the private variable declared inside Button_Click event. Please any one help me.
---
Posted using ... more >>
TableCell oTableCell = new TableCell(); noWrap?
Posted by Brian K. Williams at 4/29/2004 4:20:45 PM
Does anyone know how to set the noWrap on a TableCell?
TableCell oTableCell = new TableCell();
oTableCell. ???? = noWrap;
Thanks in advance.
-Brian K. Williams
... more >>
migrating Access app to ASP.NET?
Posted by Jerome at 4/29/2004 4:18:06 PM
Hi there,
I've got an MS Access application with multiple tables, queries, forms
(and sub-forms!), reports ...
It would be neat if that application could be migrated to ASP.NET since
it wouldn't require the installation process anymore of each new user
who is supposed to work with it and... more >>
Control ID's
Posted by Jill Graham at 4/29/2004 4:17:14 PM
Hi,
My web page loads the controls dynamically using
Page.LoadControl("~/myControls/myControl.ascx")
The control myControl.ascx contains several controls with following ID's :
"_content1", "_content2", "_content3", ...
Once the control myControl.ascx has been loaded into the web page, the... more >>
Re: Stopping Repeated Form Submission
Posted by KV at 4/29/2004 3:59:53 PM
Is there a way to tell the difference between a legitimate submission and a
page refresh?
I have a block of code that needs to be executed when a button is clicked,
but not when the page is refreshed (as is currently happening). So if I
write some sort of transaction guide, that would imply t... more >>
Adding Form Based Authentication in a Sub Directory of Site.
Posted by Malik Asif Joyia at 4/29/2004 3:57:22 PM
Hello
I want to implement the forms based authentication. for a sub directory =
in my webapplication.
I have allready applied Forms based authentication in my webapplication =
,,
I have added a folder in my webapplication for the admin side of the =
webside and want to implement forms based au... more >>
need a little help with window.createPopup
Posted by Sergey Poberezovskiy at 4/29/2004 3:53:16 PM
Hi,
I need to show a popup on my Web Page, so I write:
var oPop = window.createPopup()
oPop.show(x,y,W,H);
I have a problem with W =width and H = height of the popup
window:
When a user goes and changes Text size on their browser,
my text on the popup either does not fit, or have too ... more >>
Protect bin folder from direct download
Posted by Pavils Jurjans at 4/29/2004 3:45:34 PM
Hello,
My ASP.NET hoster has made a separate folder in my hosting space and
configured it as separate application in IIS. Further, I created "bin"
folder in this directory, and put in my aspx pages that all use code-behind.
All works fine, but I was dismayed finding out that is is possible to ... more >>
Error Handling Question(1)
Posted by A.M at 4/29/2004 3:45:28 PM
Hi,
I have this code in my web.config:
<customErrors mode="On" defaultRedirect="~/ErrorPages/ErrorApp.aspx">
<error statusCode="400" redirect="~/ErrorPages/Error.aspx" />
<error statusCode="401" redirect="~/ErrorPages/Error.aspx" />
<error statusCode="403" redirect="~/ErrorPages/Error.as... more >>
SQLServer IsNull() & DataReader
Posted by Brent at 4/29/2004 3:40:49 PM
I'm trying to keep the logic of my web pages to a minimum. One of the
problems I face regularly is dealing with DBNull's. I know how to code my
way out of them, but I thought perhaps it'd be easier to take care of it at
the database level, rather than the asp.net level.
The SQL Server function... more >>
Frame question
Posted by Steve Caliendo at 4/29/2004 3:29:18 PM
Can a frame be added to a webform?
On the menu bar there is a "Frames" tab, but all of the menu items are
always grayed out.
Thanks,
Steve
... more >>
Order of loading pages...
Posted by Seth Broomer at 4/29/2004 3:25:42 PM
Hi, i have a .aspx Page, inside that page is a web user control.
The user control is basically a login control.
if the user is logged in the page shows one thing.
if the user isn't logged in it shows something else (basically telling them
to login)
but i have noticed that when the user ... more >>
VB6 and .net
Posted by William Gower at 4/29/2004 3:22:03 PM
Can a program written in VB6 called a control written in vb.net? If so how?
... more >>
Date Range Help!
Posted by Santosh at 4/29/2004 2:50:41 PM
Friends,
I have a Startdate = '12/12/2003' and EndDate as '4/28/2003'
I need to display as
December-2003
Jan-2004
Feb-2004
March-2004
April-2004
Also, the StartDate and EndDate can be Changed.
How do I do this in VB Script?
Any Help is Appreciated.
TIA
--
Santosh
Luck ... more >>
Deploying Crystal to shared hosting
Posted by Richard Loupatty (MIO) at 4/29/2004 2:46:38 PM
Hi,
Does someone know how to deploy a webapplication with crystal report on a
shared hosting.
Normally you would use the merge-modules of Crystal and create a
installation-package. But this
time i want to deploy it on a shared server of my provider
tia
Richard Loupatty
... more >>
Color Filling Rows in ASP Database
Posted by Josh Wiker at 4/29/2004 2:42:04 PM
Hello everyone-
I am rather new to using ASP and curious if it is possible to color a table
that is designed in ASP.
I have an access database that has searches and can display all the
requested information perfectly. Users can create, edit, and modify records
directly via the web browser a... more >>
Content Linking
Posted by Janaka at 4/29/2004 2:36:04 PM
Is there an ASP.NET version of the old ASP Content Linking component?
... more >>
Error Handling
Posted by A.M at 4/29/2004 2:17:17 PM
Hi,
I have this code in my web.config:
<customErrors mode="On" defaultRedirect="~/ErrorPages/ErrorApp.aspx">
<error statusCode="400" redirect="~/ErrorPages/Error.aspx" />
<error statusCode="401" redirect="~/ErrorPages/Error.aspx" />
<error statusCode="403" redirect="~/ErrorPages/Error.as... more >>
Age Old Question: Back \ Next buttons
Posted by Bryan at 4/29/2004 2:15:46 PM
Ok.. Im sure you've all seen this question many times, but i havent yet
found a viable solution to this problem..
In my web application, there is a section wher the user must enter data to
be saved in a database .. unfortunately, there is quite alot of data to be
saved and certain input fields a... more >>
How do I fix this error....
Posted by Kevin at 4/29/2004 2:08:11 PM
I created a button in the design window and placed some code in the
Button_Click event. When I run the program and click the button, I
get this error message:
Control 'Button1' of type 'Button' must be placed inside a form tag
with runat=server.
I've tried searching Microsoft's web site a... more >>
Switching Between Test and Production Database
Posted by Rasool at 4/29/2004 2:04:36 PM
Hi,
We have an asp.net application that we constanly use to query some data from
two servers (one prod and the other test). Everytime we have to go to
web.config and change the connection string to point to a different
database. Not to mention that while we are on the test database no one can
... more >>
Textmode = Password
Posted by William Gower at 4/29/2004 1:35:11 PM
I have a password mode field in a user record, when I go to fill the field
from an existing record I see nothing in the field, when I take the
textmode="password" off then I see the password
password.text = row("password")
... more >>
How to know if cookies are neabled and javascript?
Posted by R.A. at 4/29/2004 1:34:25 PM
When a client contects to the web site how can I know if the cookies are
enabled and also javascript enabled at the client?
If not the I want to inform hime to activate them. I am using c#
Thanks.
... more >>
Xml server control
Posted by Stan at 4/29/2004 1:31:04 PM
I could not find the answers for these two questions about in Xml server control
1. Is it possible for control to keep its ViewState? Even if I set EnableViewState = true the control does not seem to keep it, so I have to reload it on each postback
2. How do I display raw xml data? My control di... more >>
Future of ASP
Posted by Andrew at 4/29/2004 1:01:07 PM
Hi,
We are currently looking to move to asp.net from asp.
A few Questions were raised concerning classic asp.
What will happen to it?
Better yet, what will happent to us? What if we decide to stay with classic asp
Will Microsoft continue to support ASP?
Any input greatly appreciated.
... more >>
Search engine friendly URLs slowing up site
Posted by moondaddy at 4/29/2004 12:57:13 PM
I've made the decision to use search engine friendly URLs in my site which
means translating stripping all parameters our of the URL and converting it
to a hierarchical URL like this:
Change:
/mysite/default.aspx?MenuID=contactus
To:
/mysite/ContactUs.aspx?
The problem I'm having is that it... more >>
Access C# DLL from ASP .NET
Posted by Antoni Massó Mola at 4/29/2004 12:50:46 PM
Hi,
Is it possible to access a C# DLL's functions from an ASP.NET web page?
Is there any useful tutorial out there?
Thanks
... more >>
VB template classes?
Posted by Andrew Wied at 4/29/2004 12:46:04 PM
Hello
I was wondering: Does VB.net have an analogue to the C++ template classes
I am aware that I can make generic classes based on the OBJECT class, but I'm looking for a true way to do class templates.
Thanks for any help provided
Andrew... more >>
Please help. asp:hyperlink
Posted by Aaron at 4/29/2004 12:40:21 PM
How do I do this?
<asp:hyperlink style="Z-INDEX: 144; LEFT: 4px; POSITION: absolute; TOP:
119px" runat="server" Text="Click Me!" NavigateUrl="mailto://<%
response.write(txtBEmail.Text.ToString) %>" ID="Hyperlink1">BEmail
</asp:hyperlink>
I would like to construct a url based upon the content... more >>
Syntax Question - String Array
Posted by C Downey at 4/29/2004 12:28:12 PM
Whats the difference between
Dim recipient() As String
and
Dim recipient As String()
TIA
Colleen
... more >>
Create a treeview .
Posted by Billy Ziggurats at 4/29/2004 12:15:40 PM
Somebody knows how to do ?
Tks.
Billy
... more >>
Access vs. SQL backend?
Posted by Mike at 4/29/2004 12:11:05 PM
General question for experienced ASP developers...
I am developing a web application for a small business. The primary use of the web application will be for clients to log on and retrieve information about thier accounts. Essentially just retrieving various queries from the database. I am much ... more >>
Scroll to top of page?
Posted by Bishop at 4/29/2004 12:09:46 PM
I have an HTML page that is using an iFrame to get content from my ASP.NET
page. The content is a long form that a user will fill out and submit.
After a successfull submit, the "success" content is shown. The problem I
have is that when they click submit at the bottom of the form, the success
... more >>
Deploying compiled Class File (dll) for website
Posted by Andrew at 4/29/2004 11:56:43 AM
Hi all,
I am still learning ASP.Net, and .Net in general. Though I feel I have much
of the "basics" down, I am running into some gray areas in more advanced
topics. My question is how I make sure that a class file (DLL) I wrote and
am using (via "Add Reference") on my development webserver s... more >>
query string parameters
Posted by Mark at 4/29/2004 11:23:54 AM
Is there a list of what characters /, |, \, @, :, ;, {, whatever can be used
in a query string without all browsers (mozilla, ie, opera) freaking out?
Thanks in advance.
Mark
... more >>
.NET Web Setup with mssql database
Posted by Jawor at 4/29/2004 11:23:11 AM
Hi,
I want to create Windows installer for my ASP.NET application using Visual
Studio .NET Web Setup. I know how to create the installer for asp.net files.
My application using a MS SQL database. I would like this installer to
create the database with all data on the computer the installer is ru... more >>
Control is not visible on a client
Posted by Mark at 4/29/2004 10:56:05 AM
I have this ASPX code
<asp:xml id="xmlData" Visible="True" runat="server" EnableViewState="False"></asp:xml
How come document.all.xmlData says "undefined"?... more >>
Increase session timeouts
Posted by Poppy at 4/29/2004 10:51:36 AM
Is it possible for me to increase the time before a session times out and do
it in the global or webconfig files ?
In asp I used to put session.timeout = whatever in the session start event
of the global asa file.
TIA
... more >>
Question: Data Application Blocks - work with MS Access?
Posted by VB Programmer at 4/29/2004 10:43:17 AM
Do DAB work with MS Access? Any online examples?
If not, any online examples of ADO.NET with Access?
Thanks!
... more >>
Events and delegates.
Posted by bredal Jensen at 4/29/2004 10:41:39 AM
Hello,
I have populated a web form with dynamically created radiobuttons in
a table. I wnat some of the radio buttons to fire events when their
..CheckChanged property has changed.
I understand and was told this can be done with events and delegates. But my
code would
not compile. Here is wh... more >>
Postback, session state ETC
Posted by Paul at 4/29/2004 10:38:44 AM
Hi
I've almost finished the web page I'm developing (with a great deal of help
from this group - thanks everyone).
My page contains 3 drop down boxes, a SEARCH button, a datagrid (populated
using a stored procedure, the stored procedure uses the selectitem in the
drop down boxes for the par... more >>
Hide url
Posted by Richard Grene at 4/29/2004 10:17:09 AM
I am doing a response.redirect to documents on the web server so the web
user can view and save these to their local drives. However, I don't want
the url for the path of the documents to show in the url bar. How can this
be done? Is response.redirect the best way to do this?
Thanks,
Richard
... more >>
How to set RequestType to POST?
Posted by Martin Feuersteiner at 4/29/2004 10:11:01 AM
Dear Group
I'm having trouble with the script below. How do I set the RequestType so
the script will use POST instead of GET?
I tried the script below with no luck.
Thanks for your time & efforts!
Martin
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs)... more >>
ASP to APS Net Article Peter Bromberg Netscape? Opera?
Posted by Davisro at 4/29/2004 9:58:28 AM
ASP to APS Net Article Peter Bromberg Netscape?
http://www.eggheadcafe.com/articles/20021207.asp
Does this procedure work with Netscape browser?
I have implemented this process and it works great for the Internet
Explorer, but doesn't work for Netscape? Is there so... more >>
ADO connection err. in ASP but not in VB.net
Posted by tttttttt NO[at]SPAM jubiimail.dk at 4/29/2004 9:57:49 AM
I've build a DLL in VB.net that handles all sorts of business logic.
This DLL accecesses a SQL server for some data in the following way:
<Begin pseudo-code snip>
Open a Connection
Con = new Connection (bla bla bla arguments)
'Make recordset 1 (using stored procedures, but only containing
... more >>
How to copy datarow from one datatable to another ?
Posted by ypul at 4/29/2004 9:46:01 AM
can anyone tell me please ..
how to copy one datarow from one datatable to another..
I want to extract some specific rows from one datatable and put into antoher
....
" datatableOne.rows.add(datatableTwo.rows(i))"
this statement does not work ..it says
"This row already belongs to a... more >>
close window in server code?
Posted by Marcel Balcarek at 4/29/2004 9:45:46 AM
I have a sub-window. When I click 'OK' I want to:
post back to to my server code, persist some data and close the sub-window.
I don't know how to close the subwindow in server code.
Marcel
... more >>
Service Pack 2 Problem
Posted by AspDotNetDeveloper at 4/29/2004 9:36:37 AM
Hello,
I have Windows 2003 Server with .Net Framework 1.1 installed (part of the
OS), and have used Windows Update to install the Service Pack 2 (the only
way you can install it). The install seems to go fine, but Windows Update
keeps telling me I need to install Service Pack 2. I have had thi... more >>
Strong name assembly
Posted by MS Newsgroups at 4/29/2004 8:53:04 AM
Hi,
For different reasons would like to strong name my web application, but am
unable to do so. When I try to build my project with the AssemlyKeyFile
attribute set in Assemblyinfo, I get a error message saying Unable to emit
assembly: Referenced assembly 'DateTextBox' does not have a stron... more >>
Domain Name Registrars (what do they own?)
Posted by Jordan at 4/29/2004 8:37:40 AM
Suppose I register a domain name, MyDomain.com, through register.com (or any
other of the many domain name registrars).
I own the domain name. The domain name goes into the global DNS database.
As the facilitator in this process, exactly what does the registrar *own*
with respect to my speci... more >>
date to text formats - neverending story
Posted by Leo Muller at 4/29/2004 8:05:51 AM
Hi,
Very often I have a problem with date formats.
There are cases I have to cast the date to text and from text to date on a
different server. However, sometimes the date formats on the servers are
different and this doesn't always work. Also on my development environment
this is hard to det... more >>
ASP.Net outside wwwroot folder?
Posted by Tai Ming at 4/29/2004 6:46:02 AM
Hi
I am trying to create an asp.net application (using Visual Studio.net 2002 on an xpPro machine). However, I need the application to be created in a folder somewhere other than in wwwroot (this is very important as some sometimes we have to install our software in specific places
Is there any w... more >>
QueryString
Posted by jim Heavey at 4/29/2004 6:21:02 AM
If I have a web page which expects to find a QueryString when the page is initially loaded. Once the page is loaded, the client can make other choices which in effects alters the values that "should" be in the query string. When the page is repost it still maintains the old query string, which doe... more >>
Web control that acts as a xml data island
Posted by Mark Goldin at 4/29/2004 6:17:38 AM
Is there a control that would act as an xml data island?
Another words, it can store static xml data and deliver it to the client
side?
Thanks
... more >>
Embedding an Image in an Email
Posted by frustrated at 4/29/2004 6:06:04 AM
Hi
I am trying to embed our company logo in a system generated email, that will be sent from and aspx page. Is this possible, if so how... I have searched the web and everyone is trying to sell a product to do this...(which is not an option) this ability was available with CDO, why is it not ava... more >>
Displaying one-to-many data on web form page
Posted by Charlie NO[at]SPAM CBFC at 4/29/2004 5:57:10 AM
Hi:
I need to display customer data and their associated purchase items on a web
page. I guess the best idea is to pull data into an hierarchial dataset.
After that, what control is best to use to bind to it and display each
customer followed by their purchases?
Thanks,
Charlie
... more >>
The viewstate is invalid for this page and might be corrupted
Posted by Jelle.Huygen NO[at]SPAM uniway.be at 4/29/2004 4:29:00 AM
Hello,
I have developped a webapplication and I keep on getting this error:
Source: System.Web
Method name: LoadPageStateFromPersistenceMedium
Message: The viewstate is invalid for this page and might be
corrupted.
StackTrace: at System.Web.UI.Page.LoadPageStateFromPersistenceMedium()
a... more >>
CheckBoxList In A DataGrid - Can I get what's selected without using the Edit
Posted by Empire City at 4/29/2004 4:16:27 AM
I have an ASP.NET form with a DataGrid and Button. I want to put a
RadioButtonList in a DataGrid cell. I bind it to an ArrayList which has a
ListItem in the cell. The display part works fine. I then check some boxes
and hit the submit button. I can't seem to get the value that is selected on
th... more >>
Runtime error while accessing .aspx page if .mdb database is open
Posted by Gayathri at 4/29/2004 3:16:05 AM
Hi
I am using MS Access to store the data in an .mdb file. And I observe that, if the .mdb is open, I receive a runtime error whenever I/someone tries to access any of the .aspx pages that needs to access this .mdb. My .aspx pages are using OleDb for the data retrieval. I do not want those runtime ... more >>
Double "Open/Save/Cancel/More Info" dialog when downloading text file from ASP.NET
Posted by theyas at 4/29/2004 2:21:01 AM
How can I get my code to NOT display two "Open/Save/Cancel/More Info" dialog boxes when using the "Response.WriteFile" method to download a file to IE
I've asked about this before and didn't get a satisfactory answer (check your browser) so now that I've had the time to set up a reasonable little ... more >>
Array Serialization
Posted by S at 4/29/2004 2:00:17 AM
Hi there,
Here's a question for ya:
I'm serializing something that looks like this:
[XmlRoot(ElementName="Widget")]
Class Widget --> My base class
[XmlArray(ElementName="TextGroups")]
[XmlArrayItem(ElementName="TextGroup",Type=typeof(ClassTextGroup))]
... more >>
grid footer summary
Posted by Sharon Tal at 4/29/2004 1:31:43 AM
Hi to all.
I need to make a grid that sums up columns at the footer.
I have 2 data views one for the grid and one for the summary.
From what i read, i understand that it's not easy to do with the data grid
web control.
So i'm looking for a better way.
Thanks.
... more >>
Programmatically creating Excel spreadsheets in ASP.NET
Posted by raoul.snyman NO[at]SPAM psitek.com at 4/29/2004 12:59:22 AM
Hi,
I need to be able to programatically create excel spreadsheets in
ASP.NET (C#), WITHOUT having MS Office on the server.
Does anybody have any advice/links/whatever for me?
Thanks in advance,
Raoul.... more >>
Populating Javascript array from vb.net
Posted by MW at 4/29/2004 12:31:17 AM
How can I poplute a javascript array from vb.net? I would prefer to do this
from codebehind.
Michael
... more >>
RegisterClientScriptBlock Error
Posted by MW at 4/29/2004 12:26:47 AM
I am trying to register the follow script through the
RegisterClientScriptBlock method. When the page loads it tells me that the
line contain <script language=javascript> is expect ;. Why would it be
expecting " ;" ? How do I correct this problem?
<script language=javascript>
var dynim... more >>
Problems with WebRequest and Connection
Posted by GSK at 4/29/2004 12:16:12 AM
This one has me stumped:
I am using HttpWebRequest to resolve an external URL (that outputs an XML
string). It works fine on my dev machine (W2K), and used to work on my
production machine (W2K3). It seems that now, for some reason, the
connection cannot be established. The error logged is:
... more >>
|