Click here to Skip to main content
15,911,306 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: report generation Pin
Sherin Iranimose17-Jul-08 23:59
Sherin Iranimose17-Jul-08 23:59 
AnswerRe: report generation Pin
eyeseetee17-Jul-08 23:39
eyeseetee17-Jul-08 23:39 
GeneralRe: report generation Pin
n.sa.vivek21-Jul-08 2:25
n.sa.vivek21-Jul-08 2:25 
AnswerRe: report generation Pin
metallica_rock1018-Jul-08 0:10
metallica_rock1018-Jul-08 0:10 
QuestionInstead of grid and directory files any other solution for console application? Pin
Member 387988117-Jul-08 23:08
Member 387988117-Jul-08 23:08 
AnswerRe: Instead of grid and directory files any other solution for console application? Pin
Sherin Iranimose17-Jul-08 23:57
Sherin Iranimose17-Jul-08 23:57 
Questionhow to insert image at page 1 and retrive at page 3 using database Pin
gaurav mangal17-Jul-08 22:04
gaurav mangal17-Jul-08 22:04 
AnswerRe: how to insert image at page 1 and retrive at page 3 using database Pin
sumit703417-Jul-08 23:09
sumit703417-Jul-08 23:09 
try this code........


Dim filename As String = //name of ur file

If filename <> "" Then


Dim path As String = //path of file from database

Dim file As FileInfo = New System.IO.FileInfo(Path)

If (File.Exists) Then



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()

End If



End If
QuestionRetrieve Datagrid Control value Pin
Agweet17-Jul-08 21:39
Agweet17-Jul-08 21:39 
AnswerRe: Retrieve Datagrid Control value Pin
Herman<T>.Instance17-Jul-08 23:08
Herman<T>.Instance17-Jul-08 23:08 
GeneralRe: Retrieve Datagrid Control value Pin
Agweet17-Jul-08 23:20
Agweet17-Jul-08 23:20 
GeneralRe: Retrieve Datagrid Control value Pin
Herman<T>.Instance18-Jul-08 0:03
Herman<T>.Instance18-Jul-08 0:03 
GeneralRe: Retrieve Datagrid Control value Pin
Agweet18-Jul-08 0:10
Agweet18-Jul-08 0:10 
QuestionProblem with Asp.net2.0 Menu Control's javascript. Pin
amit.jha17-Jul-08 20:46
amit.jha17-Jul-08 20:46 
QuestionRegex for URL Pin
Brij17-Jul-08 20:39
mentorBrij17-Jul-08 20:39 
AnswerRe: Regex for URL Pin
Imran Khan Pathan17-Jul-08 20:51
Imran Khan Pathan17-Jul-08 20:51 
GeneralRe: Regex for URL Pin
Brij17-Jul-08 21:06
mentorBrij17-Jul-08 21:06 
QuestionLoading UserControl run time in asp.net--Urgent Pin
trilokharry17-Jul-08 20:08
trilokharry17-Jul-08 20:08 
AnswerRe: Loading UserControl run time in asp.net--Urgent Pin
Imran Khan Pathan17-Jul-08 20:16
Imran Khan Pathan17-Jul-08 20:16 
GeneralRe: Loading UserControl run time in asp.net--Urgent Pin
trilokharry17-Jul-08 21:20
trilokharry17-Jul-08 21:20 
QuestionFreeze Gridview Header [modified] Pin
Abhijit Jana17-Jul-08 19:41
professionalAbhijit Jana17-Jul-08 19:41 
AnswerRe: Freeze Gridview Header Pin
Sherin Iranimose17-Jul-08 21:21
Sherin Iranimose17-Jul-08 21:21 
GeneralRe: Freeze Gridview Header Pin
Abhijit Jana17-Jul-08 21:26
professionalAbhijit Jana17-Jul-08 21:26 
GeneralRe: Freeze Gridview Header Pin
Sherin Iranimose17-Jul-08 21:55
Sherin Iranimose17-Jul-08 21:55 
AnswerRe: Freeze Gridview Header Pin
~V~17-Jul-08 23:08
~V~17-Jul-08 23:08 

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.