Click here to Skip to main content
15,912,756 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: how to floating image box on right side o f bottom of page in asp.net Pin
badgrs30-Apr-07 5:03
badgrs30-Apr-07 5:03 
Questionurgent help is required Pin
speedy_gonzalas30-Apr-07 0:42
speedy_gonzalas30-Apr-07 0:42 
AnswerRe: urgent help is required Pin
Christian Graus30-Apr-07 0:46
protectorChristian Graus30-Apr-07 0:46 
AnswerRe: urgent help is required Pin
Wael Al Wirr30-Apr-07 2:43
Wael Al Wirr30-Apr-07 2:43 
GeneralRe: urgent help is required Pin
Colin Angus Mackay30-Apr-07 10:28
Colin Angus Mackay30-Apr-07 10:28 
QuestionASP.NET/PDF Pin
kirthikirthi30-Apr-07 0:40
kirthikirthi30-Apr-07 0:40 
AnswerRe: ASP.NET/PDF Pin
Christian Graus30-Apr-07 0:53
protectorChristian Graus30-Apr-07 0:53 
AnswerRe: ASP.NET/PDF Pin
Abolfazl Sheikhloo30-Apr-07 0:54
Abolfazl Sheikhloo30-Apr-07 0:54 
in first step you must create a crystalreport object to show my result
for example yourReportFile.rpt
and copy below codes in your submethod:

yourReportFile myrpt = new yourReportFile();
rpt.SetDataSource(yourDataTable);

System.IO.MemoryStream oStream;

oStream = (System.IO.MemoryStream)
myrpt.ExportToStream(
CrystalDecisions.Shared.ExportFormatType.PortableDocFormat);
Response.Clear();
Response.Buffer= true;
Response.ContentType = "application/pdf";
Response.BinaryWrite(oStream.ToArray());
Response.End();


We Can Do Anything, If We Want It
GeneralRe: ASP.NET/PDF Pin
Christian Graus30-Apr-07 1:09
protectorChristian Graus30-Apr-07 1:09 
QuestionDundas Chart for ASP.NET Pin
kallileo29-Apr-07 23:23
kallileo29-Apr-07 23:23 
AnswerRe: Dundas Chart for ASP.NET Pin
Colin Angus Mackay30-Apr-07 0:04
Colin Angus Mackay30-Apr-07 0:04 
AnswerRe: Dundas Chart for ASP.NET Pin
Arun.Immanuel30-Apr-07 2:35
Arun.Immanuel30-Apr-07 2:35 
GeneralRe: Dundas Chart for ASP.NET Pin
kallileo30-Apr-07 5:43
kallileo30-Apr-07 5:43 
GeneralRe: Dundas Chart for ASP.NET Pin
Arun.Immanuel30-Apr-07 5:48
Arun.Immanuel30-Apr-07 5:48 
GeneralRe: Dundas Chart for ASP.NET Pin
kallileo30-Apr-07 6:26
kallileo30-Apr-07 6:26 
QuestionImpersonate using credentials of currently logged on user. Pin
jdkulkarni29-Apr-07 22:55
jdkulkarni29-Apr-07 22:55 
AnswerRe: Impersonate using credentials of currently logged on user. Pin
mail57235230-Apr-07 1:25
mail57235230-Apr-07 1:25 
GeneralRe: Impersonate using credentials of currently logged on user. Pin
jdkulkarni3-May-07 1:55
jdkulkarni3-May-07 1:55 
Questionclient script to validate empty Listbox Pin
aransiola29-Apr-07 22:29
aransiola29-Apr-07 22:29 
AnswerRe: client script to validate empty Listbox Pin
Chetan Ranpariya29-Apr-07 23:02
Chetan Ranpariya29-Apr-07 23:02 
QuestionUrgent !!! Unable to add table adapter in asp.net2 Pin
Deepml29-Apr-07 21:55
Deepml29-Apr-07 21:55 
AnswerRe: Urgent !!! Unable to add table adapter in asp.net2 Pin
Andy *M*30-Apr-07 0:05
Andy *M*30-Apr-07 0:05 
GeneralRe: Urgent !!! Unable to add table adapter in asp.net2 Pin
Christian Graus30-Apr-07 1:08
protectorChristian Graus30-Apr-07 1:08 
GeneralRe: Urgent !!! Unable to add table adapter in asp.net2 Pin
Colin Angus Mackay30-Apr-07 5:25
Colin Angus Mackay30-Apr-07 5:25 
Questionhelp about hide destop icon and task bar and startup button Pin
Suhail Shahab29-Apr-07 21:32
Suhail Shahab29-Apr-07 21:32 

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.