all groups > asp.net > january 2005 > threads for saturday january 8
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 31
Passing data to another aspx in different frame
Posted by Evan at 1/8/2005 9:15:02 PM
I have a web page with 2 frames. The left frame is running menu.aspx and the
right frame is running images.aspx. When a selection is made in menu.aspx I
call a method in images.aspx and pass a variable. The intention is that
images.aspx will take the variable and load images into its frame ... more >>
Newbe question ---- response.writefile
Posted by oz at 1/8/2005 8:47:02 PM
private void Page_Load(object sender, System.EventArgs e)
{
if(!IsPostBack)
{
String FileName;
FileInfo MyFileInfo;
Long StartPos = 0, FileSize;
FileName = "J:\\Summary.txt";
MyFileInfo = new FileInfo(FileName);
FileSize = MyFileInfo.Length;
Response.Output.Wr... more >>
ASP.net language translating problem
Posted by shibdutta NO[at]SPAM rediffmail.com at 1/8/2005 6:08:03 PM
i am new to the .NET world. i am not been able to tranlate the ASP.net
web pages to other languages. i don't know which namespace to use for
it.
thanks... more >>
Project... Copy Project Settings
Posted by Selden McCabe at 1/8/2005 4:38:04 PM
I have a new web server, somewhere on the Internet.
I have remote desktop sharing set so I can fully access the machine via
Netmeeting.
The server has IIS and is already hosting a few web sites and FTP sites.
I've created a folder on the local hard drive, and created a new virtual
directory i... more >>
You must synchronize any write operations... Meaning.......
Posted by Hewit at 1/8/2005 4:13:12 PM
DataTable Class documentation says.
Thread Safety
"This type is safe for multithreaded read operations. You must synchronize
any write operations."
In my web based application (ASP.Net) developed using Vb.Net on .Net
Framework 1.1. can I write a function which will populate an object(derived
... more >>
Forcing ASP.NET processing of an arbitrary file
Posted by MWells at 1/8/2005 3:31:27 PM
I have a simple project server which shares files from within our network.
The ASP.NET front end uses a database to authenticate users, and then based
on their permissions, reaches across the network to various project folders
and enumerates the files within. When clicked on, the file is retriev... more >>
HttpApplication.Session.SessionID Change on Each Request. Is it Normal?
Posted by Mike Kline at 1/8/2005 3:25:31 PM
Hi There!
I'm creating a HttpModule and after AcquireRequestState event, I tried to
access the HttpApplication.Session.SessionID and somehow I'm getting a new
value on every Refersh of ASPX page.
I thought SessionID is supposed to stay static until the session timeout
defined in the web.con... more >>
MS/Word, PDF ?
Posted by WJ at 1/8/2005 1:09:26 PM
I have documents written in MS/Word (Doc), Ascii Text, and Adobe Acrobat
(PDF) formats. They are of type "Image" stored in SQL server. How do I
display these documents to the Asp.Net page ? I retrieve the documents in
byte array using c# via Sql Procedure.
Thanks,
John Webbs
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Protecting multiple directories
Posted by Maziar Aflatoun at 1/8/2005 12:33:01 PM
Hi everyone,
I have a website that requires 2 separate sections to be password protected
(/admin and /admin2) so that for ex. once the user in /admin2 is
authenticated he/she can then view everything in /admin2 only without
restrictions. I have managed to make it work for 1 /admin and it w... more >>
Making Objects from Custom HttpModule Available to ASPX Page or ASCX Controls?
Posted by Mike Kline at 1/8/2005 12:19:06 PM
Hi There!
How do I make the Objects in the custom made HttpModule available to ASPX
page or ASCX controls without requiring an object reference?
For example, SessionState HttpModule made the Session object available
throughout the ASP.NET application without needing to have a reference to ... more >>
Cannot delete file from webserver...... process cannot access style error
Posted by news.microsoft.com at 1/8/2005 11:41:43 AM
I need some help here guys.... i have been simply trying to delete a file
from the webserver using asp.net
using the following code.
System.IO.File.Delete(FullPath);
however the error message i get is the following
The process cannot access the file
"e:\inetpub\wwwroot\client_dev\brands\... more >>
two panels
Posted by JJ at 1/8/2005 11:33:02 AM
Hi,
How can I lay one panel over the other? I want to switch back and forth
between panels that overlap. If I do this and make one invisible can I still
load controls with data if that particular panel is invisible?
Thanks,
JJ... more >>
Deploy ASP.NET project
Posted by David at 1/8/2005 11:07:59 AM
Hello.
What type of files I need to deploy to my client when I finish my ASP.NET
project?
Thank you.
... more >>
DataSet (Vs) XmlDocument serialization
Posted by Diffident at 1/8/2005 11:01:02 AM
Howdy,
Serializing/Deserializing which object is costly? DataSet or XmlDocument....
My requirement is to store either DataSet or XmlDocument in Session whose
number of records are in the order of 700-800... more >>
IHttpModule
Posted by silesius at 1/8/2005 9:22:00 AM
Hi all,
I'm using Visual Studio to create an HttpModule. I created a class library
project added my code and two directives System and System.Web, but every
time I try to compile it gives me this error message "The type or namespace
name 'IHttpModule' could not be found (are you missing a us... more >>
Problems with Response.Flush
Posted by Frank at 1/8/2005 8:40:22 AM
Hello all. On our site's pages, I have a waiting animation whom's HTML
is Response.Write'd out and then flushed in our Page_Load. On some of
our servers, the waiting page works fine. On others, the response.flush
doesn't work til the page is completely done loading, which completely
voids the po... more >>
Windows Auth, but Forms Auth for one page?
Posted by dhnriverside at 1/8/2005 7:43:02 AM
Hi guys
My intranet site is using Windows authentication to get users login and
details, and using Roles to determine which pages they can visit.
However, I want to give them a page so that they can access their AD info
(address, telephone number etc), change it, and change their password... more >>
Datareader not working
Posted by Scott Richards at 1/8/2005 2:09:01 AM
Hi I am getting a exception while using a datareader here is the code
Me.SqlConnection1.Open()
Me.SqlReservationCheck.Parameters("@Ref").Value = Ref
Dim Reader As SqlClient.SqlDataReader = _
Me.SqlReservationCheck.ExecuteReader()
Dim I As Integer()
Dim Index ... more >>
|