Click here to Skip to main content
15,893,564 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Using unique database login for each user accessing the site Pin
ToddHileHoffer22-Jan-08 9:15
ToddHileHoffer22-Jan-08 9:15 
GeneralRe: Using unique database login for each user accessing the site Pin
JacquesDP22-Jan-08 22:54
JacquesDP22-Jan-08 22:54 
QuestionHow to create an ASP.NET project with Visual Studio 2005? Pin
Xiangyang Liu 刘向阳22-Jan-08 6:56
Xiangyang Liu 刘向阳22-Jan-08 6:56 
AnswerRe: How to create an ASP.NET project with Visual Studio 2005? Pin
Declan Bright22-Jan-08 7:06
Declan Bright22-Jan-08 7:06 
GeneralUse DataSource as Dataset in Cs file Pin
munklefish22-Jan-08 5:32
munklefish22-Jan-08 5:32 
GeneralRe: Use DataSource as Dataset in Cs file Pin
ToddHileHoffer22-Jan-08 6:22
ToddHileHoffer22-Jan-08 6:22 
QuestionForce download popup for audio file Pin
MayyMagdy22-Jan-08 5:22
MayyMagdy22-Jan-08 5:22 
GeneralRe: Force download popup for audio file Pin
ToddHileHoffer22-Jan-08 6:26
ToddHileHoffer22-Jan-08 6:26 
# string strRequest = Request.QueryString("file");
# //-- if something was passed to the file querystring
# if (strRequest != "") {
# //get absolute path of the file
# string path = Server.MapPath(strRequest);
# //get file object as FileInfo
# System.IO.FileInfo file = new System.IO.FileInfo(path);
# //-- if the file exists on the server
# if (file.Exists) {
# //set appropriate headers
# Response.Clear();
# Response.AddHeader("Content-Disposition", "attachment; filename=" + file.Name);
# Response.AddHeader("Content-Length", file.Length.ToString());
# Response.ContentType = "application/octet-stream";
# Response.WriteFile(file.FullName);
# Response.End();
# //if file does not exist
# }
# else {
# Response.Write("This file does not exist.");
# }


I didn't get any requirements for the signature


QuestionRe: Force download popup for audio file Pin
MayyMagdy23-Jan-08 4:30
MayyMagdy23-Jan-08 4:30 
Generalcall an Java Applet from aspx link Pin
gottimukkala22-Jan-08 5:17
gottimukkala22-Jan-08 5:17 
AnswerRe: call an Java Applet from aspx link Pin
Abhijit Jana22-Jan-08 19:45
professionalAbhijit Jana22-Jan-08 19:45 
Generalsilly :| Pin
Spykraft22-Jan-08 5:07
Spykraft22-Jan-08 5:07 
GeneralRe: silly :| Pin
ToddHileHoffer22-Jan-08 6:24
ToddHileHoffer22-Jan-08 6:24 
GeneralRe: silly :| Pin
Declan Bright22-Jan-08 6:43
Declan Bright22-Jan-08 6:43 
QuestionLimiting input in textbox Pin
Ni Na22-Jan-08 2:46
Ni Na22-Jan-08 2:46 
GeneralRe: Limiting input in textbox Pin
eyeseetee22-Jan-08 5:15
eyeseetee22-Jan-08 5:15 
GeneralRe: Limiting input in textbox Pin
ice-hotty22-Jan-08 18:36
ice-hotty22-Jan-08 18:36 
GeneralReverse DNS in .NET Pin
Waleed Eissa22-Jan-08 1:43
Waleed Eissa22-Jan-08 1:43 
GeneralThe responseText property of XMLHttpRequest object is returning the whole HTML page Pin
AumSingh22-Jan-08 1:42
professionalAumSingh22-Jan-08 1:42 
GeneralRe: The responseText property of XMLHttpRequest object is returning the whole HTML page Pin
sulabh202022-Jan-08 18:23
sulabh202022-Jan-08 18:23 
QuestionRecord No in Cross-Tab Pin
Pankaj Garg22-Jan-08 1:20
Pankaj Garg22-Jan-08 1:20 
Questionhow can i maintain a session on client side ? Pin
manish.singhal22-Jan-08 1:00
manish.singhal22-Jan-08 1:00 
AnswerRe: how can i maintain a session on client side ? Pin
J4amieC22-Jan-08 1:11
J4amieC22-Jan-08 1:11 
GeneralRe: how can i maintain a session on client side ? Pin
manish.singhal5-Feb-08 22:28
manish.singhal5-Feb-08 22:28 
Generalliteral not displaying html tags Pin
samerh22-Jan-08 0:46
samerh22-Jan-08 0:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.