|
I you have no Idea , better not mesh writing space.
Develop2Program & Program2Develop
|
|
|
|
|
What did either of your posts to this thread mean?
CleaKO
"I think you'll be okay here, they have a thin candy shell. 'Surprised you didn't know that." - Tommy Boy "Fill it up again! Fill it up again! Once it hits your lips, it's so good!" - Frank the Tank (Old School)
|
|
|
|
|
Great, Thanks
As In ASP you create Virtual Directory and provide address for it.
Whereas in ASP.Net you are provided options of HTTP://
So while making does one require to create virtual in IIS or .net Creates for you.
Develop2Program & Program2Develop
Better Foundation Build best Building
|
|
|
|
|
I need to use ActiveX control in HTML. Everything is fine except for a typical requirement that when that HTML page is opened in IE on Windows XP where SP2 is installed to restrict the automatic download of ActiveX control the context menu which says "Install ActiveX Control..." (generally appears on top of the page under Information Bar" the same menu should appear on the right click of the mouse where the control is used on this page.
Thanks in advance.
|
|
|
|
|
You want the menu to appear or it is supposed to appear due to IE rules?
CleaKO
"I think you'll be okay here, they have a thin candy shell. 'Surprised you didn't know that." - Tommy Boy "Fill it up again! Fill it up again! Once it hits your lips, it's so good!" - Frank the Tank (Old School)
|
|
|
|
|
Thanks for your reply. Just to make my requirement more clear, pls see the screenshot from the given URL.
http://63.134.215.155/OpMem/sshot.jpg
Thanks.
-Gurdev
|
|
|
|
|
Hi there,
Can you tell me that how can I create a dynamic html table from javascript
--------------------------------------------------------------------------------------------------
Hiral Shah
India
If you think that my question is good enough and can be helpful for other then don't forget to vote.
|
|
|
|
|
The idea is to create a XML element with the properties you want using javascript and insert it into the document.
Brad
Australian
- bryce on "Problems with Code Project"
*sigh* Maunder's been coding again...
|
|
|
|
|
hi..
function CreateDynamicTable(noofRows,noofCols)
{
noofRows =5;
noofCols = 5;
var str = "<table width='100%' cellpadding='0' cellspacing='0' border=1 align='left' style='text-indent:5px;'>";
for(var i=0;i<noofRows;i++)
{
str += "<tr width='100%'>";
for(var j=0;j<noofCols;j++)
{
str += "<td>r "+i+"c "+j+"</td>";
}
str += "</tr>";
}
str += "</table>";
// if u dont have any html contol to load the table then create a div
// and attach it to form.
var dv;
dv = document.createElement('div');
dv.setAttribute('id',"LoadDiv");
//dv.style.backgroundColor = 'Red;
dv.innerHTML=str;
document.forms[0].appendChild(dv);
}
|
|
|
|
|
Thank you for the reply.
--------------------------------------------------------------------------------------------------
Hiral Shah
India
|
|
|
|
|
How can i get the virtual directory name entered by the user out from the web setup project to use it in the installer class ?? ? ?
Murad Surkhi
|
|
|
|
|
hi,,
in the Installer class
we have to give
string VirtualDirectoryPath = this.Context.Parameters["INSTALLDIR"];
and in the CustomActionData propety window u have to give
/INSTALLDIR="[TARGETDIR]\"
|
|
|
|
|
I am making an control which saves xls file in database attached by user. file size will be of 3 MB and there will be 3 such files. Can someone please help me and tell me how can i directly save the file in database rather then saving it in some location on server.
Ram Shankar Tripathi
Software Engineer
Telstra
Australia
|
|
|
|
|
Which language you are using to make that?
--------------------------------------------------------------------------------------------------
Hiral Shah
India
If you think that my answer is good enough and can be helpful for other then don't forget to vote.
|
|
|
|
|
Yes this is a simple task. There is a database format in MySQL called BLOB (what database are you using) and this can store any value to the capacity of the hard drive (supposedly). Please post the language you are using and the database
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
|
Hi,
I need to put a reference to my site on an external web page that will open up a new window with my webpage and a specific page showing in the main frame. Psuedo code would be:
http://www.aquarius.com.au/index.html <.. show myclubv2home.html in index.html.. target = mainFrame>
How do I do that?
Glen Harvy
|
|
|
|
|
Just insert this into your page:
<br />
<frameset cols = "25%, 25%,*"><br />
<frame src ="myclubv2home.html" /><br />
</frameset><br />
Also, the above is a Frameset, you might find that a Navigation Frame would be better.
Trinity: Neo... nobody has ever done this before.
Neo: That's why it's going to work.
|
|
|
|
|
Frames are now being fazed out. What is the reason for the other site in the frame.
Brad
Australian
- Bradml on "MVP Status"
If this was posted in a programming board please rate my answer
|
|
|
|
|
Thanks for your response.
I was aware that Frames are "not good" but I frankly don't know how to have my site not fully reload every time someone goes to another page. If you have a moment, check out http://www.aquarius.com.au[^] to see what I mean.
I was going to do my site using layers for each sub-page but was concerned that I would then end up with just a one page web site that could take some time to download, let alone place all my eggs in one basket.
I tried a master page in aspx but even the masterpage reloads each time.
I am no expert on web design so any suggestions would be very much appreciated.
As far as my original question goes - I need to be able to specify a url for use on other web sites that will link to one page on my site but I want that page to appear as part of the frameset - specifically inside the mainFrame. I don't think that is possible in plain html but I was think along the lines of linking to page that would then run a script which in turn does what I want.
Any ideas or pointers to sites on the net that may be able to help me would be gratefully appreciated.
TIA.
Glen Harvy
|
|
|
|
|
Perhaps having a GET parameter in the url (eg. whatever.com/sales.aspx?inFrame=false) for external pages so the sale.aspx page knows to create a frame. Alternatively you could check the parent.window variable in javascript.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
Hi,
i opened a popup window in my page. In that popup window i am having a link which will redirect to the another page in the same popup window. for that i am using response.redirect(i need to use this method, i shouldnot use any other method). so when i redirect the page in popup window using the above method i need to display menubar in the page which is going to display the page in the popwindow using Response.Redirect method. Please give me the solution for this asap. Thanks in advance
Thanks and Regards
Venkat
|
|
|
|
|
I read that 3 times and came to the conclusion that I could not make sense of it. Please provide a postal address so I can send you crayons and paper. (alternatively you can further define your question)
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
venkatasivaramaprasad wrote: Please give me the solution for this asap. Thanks in advance
Solution: Don't use popups. We hate pop-ups. Any solution i give you will be broken by one or more pop-up blockers, because everyone else hates pop-ups too. And work-around for those breakages will just cause further problems, thereby slightly increasing the hate that all humanity feels for pop-ups. So, seriously, don't use 'em.
You're welcome in advance.
----
...the wind blows over it and it is gone, and its place remembers it no more...
|
|
|
|
|
Hi,
I have a button on Page 1 that executes a Stored Procedure. On page 2 I have a Datagrid to display the results from the Stored Procedure. I have setup a DataSet and now I need to bind the datagrid to the button.
How do configure the ObjectDataSource so that I am able to bind the controls from page 1 to the datagrid in page 2?
Illegal Operation
Making Computer Software Talk
|
|
|
|