There is one large size web page need to display. The repsonse.buffer is on. I want to calll response.flush when the size of the oupput string is large enough, but before get the buffer limit . My goal is avoid buffer limit error and get the best performance.
how can I get different font size in the form method "select", "input" instructions working under ASP? because when I check with the browser is too big in the table.
i have created a login page which works great except it looks really ugly in IE. I am trying to make the text size smaller but i have tried everything and it doesnt work. below is my code:
how i can adjust the font and size for the display for the response write statement (code below) cos when it is shown on the test page, the font is big and i wish to reduce the size and font.
<% if Request.Cookies("Login") = "1" then Response.Redirect("default.asp") else Response.Write("Please login before accesing our site!")
end if
strFrom = CStr(Request.QueryString("from"))
if strFrom = "no_record" then Response.Write("No Record Found!") end if if strFrom = "logout" then Response.Write("Log Out Successful") end if %>
i would like to be able to increase font size globally, at the click of a mouse within a site. Does any one have the script basics for this. ie. how is a 2nd style sheet called etc
I had a quick questions. I'm using asp to send out a text email. I was wondering if there's a way to change the font size of the text in the email that I sent out? This is what the body email code looks like:Code:
How can I set my default display font size, type for a web page, or a<table>?I dont want to write <font size=....> everywhere, especially inside each <td>.I know this is HTML question.
I am trying to retrieve info from database and display it in the form. The problem I having is when I try to change the info in the form, it is not changing and I don't know why. table.fieldname = payroll
Code:
payroll = rs("payroll") If payroll = "something" Then payroll = "Some Payroll" End If
In the form table: <input type="text" name="payroll" value=<%response.write(payroll)%>>
I want "Some Payroll" to be displayed in the form instead of "Something".
I am creating html string in a component that transforms xml into html. Works o.k. with small html strings, but takes forever to response.write big html strings. Is it possible to speed it up?
I have a specific access db field that holds visitor website url's and I am currently displaying it onto a page as text but instead I need it to be displayed a clickable hyperlink.
The field datatype within access is set to url but when the entry is written to an asp page it doesn't bring the hyperlink properties with it.
I think I should be enclosing the RS within an <a href=''></a> type tag but can't seem to get it right.
Current code: Response.Write RS ("website") & "<BR><BR>"
trying to display a memo field using response.write but it truncates it. Is there a size issue with response.write? If so how do I get round it and to be able to display the whole memo field.
I have certain pages on my site that are displayed by using response.write...these are results displayed from databases. My CSS doesn't work on these...probably because it looks for certain fields and the response.write is done server-side? I dunno...but does anyone know of what I can do to get this working?
then after query if i display on the page using response.write, it displays as 'a n'. only one space in between and all other are removed while the value in the variable or session is the same as in the database. any ideas or alternatives?
i have a column called Country and the records are blank when its U.S.A . when i retrieve them i have this code and when i do Response.write residentcountry its blank can someone tell me whats wrong.
residentcountry=rs("Country")
if residentcountry="" then residentcountry="U.S.A" End if
i have asp page with 2 tables one is created by me and the second by response.write beetwen those tables i have empty space that i dont want how to fix this.
i use response.write(day), where day contains a day of the month. well, it just prints '2' if day=2, but i want to print '02', like it's supposed to appear. Something similar to this