|
r_jaz wrote: is there a way to call the c# script function "Highlight" from the code behind ?
There is no "Highlight" function, you have "inline" server code. It will always be executed anytime the ASP.NET page is executed on the server.
Based on your posts in this thread you might need to drop back to Student mode and study how Web development using Server side code execution works. Having a clear understanding of fundamental concepts is key to being a capable developer.
led mike
|
|
|
|
|
hi there,
i'm desperately looking for an HTML to BBCode (and vice versa) converter, either as a COM component or vbScript for use in an ASP (not .NET) web-application. i sure could write one on my own, but my vbscript/COM skills are a little rusty since I work with C# and .Net for almost the last decade.
does anyone know of something or has a snippet of code in his/her bottom drawer? any hint/help is greatly appreciated.
cheers!
/matthias
I love deadlines. I like the whooshing sound they make as they fly by. [Douglas Adams]
|
|
|
|
|
matthias s. wrote: i'm desperately looking for an HTML to BBCode (and vice versa) converter
JFGI[^]
led mike
|
|
|
|
|
thanks, done this already. I'm not the kind of guy who visits a programming forum before even starting a single, selfmotivated thought.
many of the google-results is php stuff. the rest is online javascript conversion tools, for the end-user who wants to convert some html into bbcode, so that he/she can post it into a forum. what I need is either a COM component (preferably) or some vbScript...
regards!
/matthias
I love deadlines. I like the whooshing sound they make as they fly by. [Douglas Adams]
|
|
|
|
|
The second item returned from that Google search is a Web Page that contains all the Javascript for the HTML to BBCode conversion. It also has table that lists the conversions. I suppose it would be better if someone could just provide you with a ready made solution, but if not you should be able to accomplish your goal using the code and information provided by that page.
led mike
|
|
|
|
|
How to Use HTTP: option while creating the ASP Application. It gives website not ready. I am not Getting after trying all permutation and Combination
Develop2Program & Program2Develop
|
|
|
|
|
Does anyone get that? Looks like another case of babelfish to me....
|
|
|
|
|
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.
|
|
|
|