Questions tagged [response.write]

141 questions
0
votes
1 answer

Script for Partial rendering using Response.Redirect Not working in chrome and mozilla

Below is my code...... Response.Write("c#
iJade
  • 23,144
  • 56
  • 154
  • 243
0
votes
2 answers

Is there any way to replace Response.Write?

My problem is, I have the following function: function change_tarif(param) { var arrTarif = <% Response.Write(Session["Tarif"]); %> ..... } Session["Tarif"] - contains multidimensional array List and when I'm loading my page it's giving…
firefalcon
  • 500
  • 2
  • 8
  • 21
0
votes
1 answer

Page back not working as expected on BinaryWrite

I have a home/main menu page. There's a link to the form. If you run the form with inputs, you get Excel output. If you click 'open' to open that output in the browser, the back-button takes you to the home/main menu. Which is understandable, since…
user426364
  • 160
  • 9
0
votes
1 answer

AjaxRequest.get( ) not accepting text/Html from Response.Write() function

i am using AjaxRequest.Get() method from AjaxRequest. following is the inline javascript in analysis.aspx function getAnalysis(type) { var innerHtml; AjaxRequest.get( { 'url':…
j4m4l
  • 328
  • 2
  • 10
  • 22
0
votes
2 answers

ASP.NET Pageflow Info

So I'm trying to use C# to grab stored HTML in a database and then display it between a set HTML header and footer (I have a couple of these for different pages, so a masterpage would make life more complicated rather than less. I also come from a…
user798080
-2
votes
3 answers

Response.Write--How to show Image

This is my image Url string fileUrl = file.Link; I want to show this on Response.Write.How to do it? Response.Write("") Above Code I tried.But it doesn't work.
Nivin V Joseph
  • 12,042
  • 2
  • 15
  • 24
1 2 3
9
10