|
hi
i hav made a project in asp.net 1.1 with vb.
i hav upload the project on client server its working fine with IE browser but when i open it into the mozilla browser.
its give me desiging error like header is not coming aur line is dissapper.
what i hav to do solve this problem
thanx.
|
|
|
|
|
If the layout looks different in IE 6 and Mozilla/FireFox/Netscape, it's almost always Mozilla/Firefox/Netscape that renders the code correctly.
IE 6 has a number of rendering bugs[^] that you have to avoid when you make designs that should work in IE 6 as well as other browsers.
---
b { font-weight: normal; }
|
|
|
|
|
hi Friends/Sirs/Madams,
i am jeevan working for RPS software company.
actually i need to develop a moodule where the STOCK DETAILS NEEDS TO SCROLLING continuosly.
it has to display the live data of the company with company name form the stock exchange result and where we need to update the data as and when required.
this has to be developed in .net which needs to use XML web services.
and the same to be integrate with the Share point portal service.
Thanks
regards
jeevan
|
|
|
|
|
So your question is...?
Or are you soliciting bids for someone to write this for you? Contact me via email and I'll be happy to give you a quote.
only two letters away from being an asset
|
|
|
|
|
Hi,
How to know the region(country) from where a request has been initiated to a web server in ASP.NET?
eg:
Suppose the web server is located in US and a person has requested for a page from some other country say India, In this scenario, how the information about the name of the country(India) from where the request has initiated can be known?
Thanks in advance.
Subrahmanyam K
|
|
|
|
|
Hi there. The only method I know of is by retrieving the browser's IP address and comparing to a database. This article describes this:
http://www.4guysfromrolla.com/aspfaqs/ShowFAQ.asp?FAQID=179[^]
But it's a method with flaws (which the article also describes). If your goal is to provide personalized settings to users based on location, you may just want to let the users select the location for themselves and store that as Profile information.
|
|
|
|
|
Hi Mike!!!
Thanks a lot for the information.
Subrahmanyam K
|
|
|
|
|
Hi dears,
I want to read an image from SQL Server and show in a Image WebControl . Now I can read it from SQL Server in a stream , but Imag WebControl has no method to get a stream .... ! I dont want to save stream on disk and get its path . How can I directly assign a stream to Image WebCotrol. kindly help me!
thx...
www.behzadi.net
|
|
|
|
|
Hi there,
Image control has ImageUrl property, you can set this to an aspx page and in this page, you just write the image's stream...
<< >>
|
|
|
|
|
You are right ...
but, what about more than one image that some of them should be shown in a GridView or in a particular place ? i want to get images in Image WebControls and then place them in their correct position ....
www.behzadi.net
|
|
|
|
|
Make an aspx page to get images from the database based on it, that page then writes the stream.
so you have ImageUrl="~/GetPic.aspx?id=5 and then the next image has ImageUrl="~/GetPic.aspx?id=73" and so one.
|
|
|
|
|
Do a search for articles here. This is a common question.
only two letters away from being an asset
|
|
|
|
|
check it out this can be help full
string physicalImagePath = Server.MapPath("imagePathHere");
Response.ContentType = "image/gif";
System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(physicalImagePath);
bmp.Save(Response.OutputStream,System.Drawing.Imaging.ImageFormat.Gif);
bmp.Dispose()
|
|
|
|
|
Dear Friends,
I want to generate controls Textbox, Checkbox, Label etc... programaticaly.. pls help me
Dear Friends.....
Haridas.R
harisofttech@gmail.com
harisofttech@hotmail.com (online)
harizeenet@yahoo.co.in(online)
"Achievement is not a destination, its a journey "
|
|
|
|
|
do one thing
use placeholder control where you want to display.
create conrols
ex:
TextBox txtName = new TextBox();
txtName.Name = "txtName";
Add to the placeholder conrtol.
placeholder1.Conrols.Add(txtName);
whenever u dont want remove or Hide
//Removing
placeholder1.Conrols.Remove(txtName);
regards
GV Ramana
|
|
|
|
|
Thanks for the infromation...
Haridas.R
harisofttech@gmail.com
harisofttech@hotmail.com (online)
harizeenet@yahoo.co.in(online)
"Achievement is not a destination, its a journey "
|
|
|
|
|
Generating controls is possible but mainting the state is tricky. If you can't use a dataRepeater (even with your own custom XML or dataset) or gridview you may have to.
<br />
TextBox txt = new TextBox();<br />
txt.Text = "Dynamically added to Page";<br />
this.Controls.Add(txt);<br />
You will find that the value in the control will disappear on each postback.
Please refer to this link for more information about the page lifecycle.
how vital enterprise application are for proactive organizations leveraging collective synergy to think outside the box and formulate their key objectives into a win-win game plan with a quality-driven approach that focuses on empowering key players to drive-up their core competencies and increase expectations with an all-around initiative to drive up the bottom-line. But of course, that's all a "high level" overview of things
--thedailywtf 3/21/06
|
|
|
|
|
Thanks for the information,
How we can manage this State.. pls inform me
Haridas.R
harisofttech@gmail.com
harisofttech@hotmail.com (online)
harizeenet@yahoo.co.in(online)
"Achievement is not a destination, its a journey "
|
|
|
|
|
hi there,
i'd downloaded a code for FileBroserDialog in asp.net from this site.i works fine when run under visual studio .but when i browse the app and run this utility the dialog never opens thereby giving time out error. any ideas.please
forward aternative code if possible. thanx.
current code::
Shell32.Shell picker = new Shell32.ShellClass();
Shell32.Folder folder = picker.BrowseForFolder(0, "Select Folder", 0, 0); //picker.BrowseForFolder((int)this.Handle, "Resource Updater", 0, 0);
if (folder == null)
{
return; //user hit cancel
}
Shell32.FolderItem fi = (folder as Shell32.Folder3).Self;
strDownloadPath = fi.Path;
|
|
|
|
|
Shell32 is running on your server, not in the browser. Are you wanting to allow users to upload a file via a web application? The only thing you can do is use the html file input control.
how vital enterprise application are for proactive organizations leveraging collective synergy to think outside the box and formulate their key objectives into a win-win game plan with a quality-driven approach that focuses on empowering key players to drive-up their core competencies and increase expectations with an all-around initiative to drive up the bottom-line. But of course, that's all a "high level" overview of things
--thedailywtf 3/21/06
|
|
|
|
|
Hi all,
I'm trying to set up my web app so that it doesn't display error/debugging/tracing messages to visitors.
I have already tried the following but i still get the Description:, Exception Details:, Parameter name:, Source Error: etc that you get from the debugger
My Web.Config has:
<trace enabled="false" pageoutput="false"> <compilation debug="false" explicit="false">
No pages have the debug set to true.
IIS has clientside debugging disabled.
Any ideas on how i can sort this out?
Thanks in advance.
|
|
|
|
|
hi Orb1t,
If you try below code in to web.config file and check that
<trace enabled="true" requestlimit="20" pageoutput="false"
="" tracemode="SortByTime" localonly="false">It is working but incase it is not work then try to flase tracing at page level like below:
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="Trace.aspx.vb"
Inherits="MCSDWebAppsVB.Trace" trace="True" %>
chetan Visodiya
-- modified at 8:05 Thursday 3rd August, 2006
Chetan visodiya
|
|
|
|
|
Chetan, Thanks for your reply + suggestions. I've tried both of them but had no luck with it, the server still returns the parser errors.
Any other ideas?
Cheers
|
|
|
|
|
I think what you are trying to do is set up custom errors. Turn the <customerros mode="On" defaultredirect="YouErrorPage.aspx">
how vital enterprise application are for proactive organizations leveraging collective synergy to think outside the box and formulate their key objectives into a win-win game plan with a quality-driven approach that focuses on empowering key players to drive-up their core competencies and increase expectations with an all-around initiative to drive up the bottom-line. But of course, that's all a "high level" overview of things
--thedailywtf 3/21/06
|
|
|
|
|
Thanks ToddHileHoffer, this is exactly what i want to do.
I just wondered whether there might be a way in which i could get it to use IIS' defualt script message'An error occurred on the server when processing the URL. Please contact the system administrator.' and avoid having to create customs + have the 302 redirects.
|
|
|
|