 |
 |
Index ‹ Web Programming ‹ ASP/Active Server Pages
|
- Previous
- 1
- ASP.Net >> Uploading images to web serverI need some help, I need the code to allow people that visit my website to be
able to upload pictures to a file on my web server. I have been able to get
close, but not quite there yet.
Set fso = createobject("scripting.filesystemobject")
Set act = fso.CreateTextFile(server.mappath("test.jpg"), true)
act.WriteLine
act.Close
The above code will create the file but will not write any data in it. Below
is the htm code that lets the user upload the file.
<form method="post" action="" name="submit" enctype="multipart/form-data">
Choose A File: <input type="file" name="filefield"><br><br>
<input type="submit" name="submit" value="submit"><br>
</form>
The problem is I can't get the upload image file information to pass
between the htm page to the asp page in a form that it can be written to a
file. I am also not sure that I am using the correct asp code since it is not
a text file I am trying to write. But it is the only code I can find. I do
not need to check to see if the file exits or anything else. All I need is to
upload an image from the htm page pass it to the asp page in the correct form
to be written then write it directly to my web server.
Thanks for you help
- 2
- 3
- ASP.Net >> Session variable scope in a Load Balanced environmentI have the following scenario in a true load balanced environment (without
sticky sessions):
There are 2 ASPX pages. I want to pass an object from the first page to the
second page. On the btnContinue_Click event of Page1.aspx, I create the
object and store it in a session variable. The next statement would be
Response.Redirect("Page2.aspx"). The code appears like this:
private void btnContinue_Click(object sender, EventArgs e)
{
OrderInfo orderInfo = new OrderInfo();
orderInfo.Property1 = "Property1";
orderInfo.Property2 = "Property2" Session["orderInfo"] =
orderInfo;
Response.Redirect("Page2.aspx");
}On Page2.aspx, on the Page_Load event, I retrieve the object from the
Session variable and put it in a OrderInfo object and then remove the
session variable. The code looks similar to below:
void Page_Load(object sender, EventArgs e)
{
OrderInfo orderInfo = new OrderInfo();
orderInfo = (OrderInfo)Session["orderInfo"];
Session.Remove("orderInfo");
}My understanding is - creating the object, putting it in a Session
variable, redirecting to another page and retrieval of the object in the
second page - all these happens in one server call. I don't care if the
Session variable is lost after this call. That is the reason I remove the
variable from session state.
My question is - are there any chances that the Session variable will lose
its value in the above scenario because of load balancing?
Any help will be appriciated.
Thanks!
- 4
- ASP.Net >> Unable To Access Custom ConfigSection in 1.1Hi guys, having a weird problem here. I've declare a custom config section
in my web.config file with the following lines
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="ClientCaps"
type="System.Configuration.DictionarySectionHandler,System" />
</configSections>
<ClientCaps>
<add key="MSIE" value="1"/>
</ClientCaps>
<!-- Rest of the usual stuff in a Web.Config file -->
</configuration>
----------------
When I try to access the section in code with the following call :-
Dim nvc As Collections.Specialized.NameValueCollection
nvc =
CType(System.Configuration.ConfigurationSettings.GetConfig("ClientCaps"), _
Collections.Specialized.NameValueCollection)
--------
I get a Exception Creating Section Handler error. According to the Assembly
load trace seems like it was looking for the System assembly everywhere but
the GAC!
The ASP.Net application is currently impersonating another windows user
account other than ASPNet.. does this have anything to do with it?
Thanks!
- 5
- Frontpage Programming >> FP 2003 - Word DocumentHi,
I am tying to create a website with FP and have stumbled accross a problem
which I cannot solve due to
the lack of experience.
I would like to be able to insert a RichTextbox into my document based on a
dropdown list. The contents
of the rtf box should be a file in a subdirectory of the tree.
The only thing I can achieve is an empty rtf box in my document. I do not
know which options I have to set
or how to pass a file as parameter to the rtf.
Can anyone help me please ?
Greetings from the grave
Frank Ball
- 6
- ASP.Net >> Weird Compile ErrorWhen I compile my VS2005 website I get this weird compile error. The line it
points to a constructor for a class that is used throughout the website. Even
more bizarre when I click on the underlined method (WebUser) VS2005 opens up
a file called WebUser [from MetaData]. Can you advise?
The type 'ui.WebUser' exists in both 'c:\WINDOWS\Microsoft.NET\Framework\v2.0.
50727\Temporary ASP.NET Files\ecuiunbound\5fbfce88\c1243b83\App_Code.bxnm9i3z.
dll' and 'c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET
Files\ecuiunbound\5fbfce88\c1243b83\assembly\dl3\e4f291fd\1eb29840_5bd6c501\
ecuiunbound.DLL'c:\inetpub\wwwroot\ecuiunbound\claim.master.cs 171 17
--
Message posted via DotNetMonster.com
http://www.dotnetmonster.com/Uwe/Forums.aspx/asp-net/200601/1
- 7
- ASP.Net >> Problem with indexed pixel format/I know alot of people have the problem with indexed pixel format. I hope
someone can show me the solution to this.I am have problem with graphics
with the following code giving the error:
"A Graphics object cannot be created from an image that has an indexed pixel
format."
'My code
<%@ Page Language="vb" %>
<%@ import namespace="system.drawing" %>
<%@ import namespace="system.drawing.imaging" %>
<%@ import namespace="system.drawing.drawing2d" %>
<%
' initialise the web object
Dim webC As New System.Net.WebClient()
' set the URL
Dim strFilename as string
strFilename="http://www.domain.com/graph.gif"
' create a bitmap based on the image from the URL
Dim g = New System.Drawing.Bitmap(webC.OpenRead(strFilename))
response.contenttype="image/gif"
dim gr as graphics = graphics.fromimage(g) ' create a New graphic object
from the above bmp
gr.smoothingMode = smoothingMode.antiAlias ' antialias objects
'' draw the number on the image canvas in verdana 10pt font bold
gr.drawString("ABC", New
font("verdana",14,fontstyle.bold),systembrushes.windowtext, New pointF(2,2))
' send the image to the viewer
g.save(response.outputstream, g.rawformat)
' tidy up
g.dispose()
gr.dispose()
webC = Nothing
%>
- 8
- 9
- IIS >> Sript using a dll an a ocx (to intigrate in IIS)Hello,
I have a script for an Motion Jpeg that I have to integrate into a website
to get a "live Image" from a network camera.
But in this script I have to install a dll (LiveImg.dll) and an oxc on my
IIS. I installed it as it was discribed in the manual but I suppose I did a
mistakte because the site doesn´t work... I get a window/frame on my site
(where the image should be), of course without a picture but I can see that
behind this window there is something working.
I have rather no idee what I did wrong... I suppose I installed the dll and
the ocx wrong.
I use Server 2003 and of course IIS 6.0
Can anybody help me ????? I have no more ideas......
Greeting from Germany, Bianca
Here is the part of the script :
Preparing the FTP and Web server
1.. Create the image directory on the FTP server.
Example: c:\inetpub\ftproot\live
Create a Web Server alias (virtual directory) and use this as the image
path in the Web page
Example: http://[WebServer]/live/
2.. Set up the Camera to continuously store images in this FTP directory.
3.. Get the LiveImg.dll here and copy it to the "execute" directory in
your Web server file tree (typically c:\inetpub\wwwroot\cgi-bin if you are
using Microsoft IIS/PWS).
Important: If you need to reinstall LiveImg.dll, you have to stop the WWW
service, install the LiveImg.dll and then start the service again. Microsoft
IIS/PWS loads the ISA when it is called the first time and it is not
unloaded until the service is stopped.
4.. Copy the Axis viewing ActiveX component available here to your
CODEBASE directory and name it AxisCamControl.ocx.
5.. Create a Web page that contains the HTML code in the example. Change
the BaseUrl, File and OcxFile.
The complete sprict :
http://www.axis.com/techsup/cam_servers/tech_notes/live_video_iis.htm
- 10
- ASP.Net >> conditional readonly textbox in a datagridI am having a hard time with this one, and I thought it would be easy.
I have a datagrid in which I have textboxs for users to enter data. One of
the fields in the database behind the datagrid tells me if the textbox is
readonly or not. I am having a hard time setting the readonly property of the
textbox with a conditional if statement (IIF).
Here is the coding;
<asp:TemplateColumn HeaderText="Data Entry">
<ItemTemplate>
<img src="images/Barrow.gif" onclick="CopyTotal(this);" title="Click here to
copy Previous Field to this text box">
<asp:TextBox CssClass="printableTextbox" runat="server"
onchange="AddRequesterName(this);" Readonly='<% #
iif(Container.DataItem("NotAllowed")=1,True,False) %>' id="txtDataEntry"
Text='<% # Format(Container.DataItem("Data"),"$#,##0.00") %>'
onblur="this.value=FormatCurrency(this.value,1);">
</asp:TextBox>
</ItemTemplate>
</asp:TemplateColumn>
What am I doing wrong with the readonly? If I look at the source, it isn't
being produced within the page.
Thank you,
Lyners
- 11
- ASP.Net >> Reliability of the Membership ClassesI tried implementing the login system based on the Membership classes
provided and I experienced some problems
Is it reliable enough and I should try to solve it or it is easier in the
long term to implement myself
Thank you,
Samuel
- 12
- ASP.Net >> Specified cast is not validHi,
I have researched this error and have found that many before me have
struggled with this. That makes me feel a little better. However, despite
all of the solutions I have seen and implemented I still have the error. My
situation is that I have a datagrid and I click on the update button I get
the error. The code:
Dim txtDescription As TextBox
txtDescription = e.Item.Cells(2).FindControl("txtArticleDesc")
I have tried e.Item.FindControl("txtArticleDesc") and I get the same error
Your help is appreciated,
Andy
- 13
- IIS >> ATQ and IIS 6.0All,
MaxPoolThreads and PoolThreadLimit parameters are very
critical in the case of IIS 5.0 operation, since INETINFO
plays a major role in the processing.
In IIS 6.0 Worker Process Model, INETINFO plays a very
minor role. So what is the importance of the above two
parameters. And if they do not matter, what are the
corresponding parameters of interest for the Worker
Process?
Any help is highly appreciated.
Regards,
Bala Vaddi
- 14
- ASP.Net >> Crossbrowser Colors for Input-FieldsHi,
is there a way to color an Input-field (Background, Border and
BorderStyle) so that the colors/options are available in all common
browsers?
When I use the Properties Window in VS2003, colors and options are
displayed correctly in IE, but screw up in Firefox.
Can this be done using css? If so, can somebody provide a short snippet
of how to do it?
Thanks in advance and greetings from Berlin.
Matthias
- 15
- Frontpage Programming >> effects don't workOk certain java scripts won't work.....why? and why does
my computer constantly pop up a java console message? and
how do you get fly in objects in dynamic html to work?
Thanks
|
| Author |
Message |
steelbee

|
Posted: Thu Jan 27 04:32:00 CST 2005 |
Top |
ASP/Active Server Pages >> default value in field
with "select @@IDENTITY" i get the value of the last field insered.. i would
like to get also the field.name help me plaese
Web Programming409
|
| |
|
| |
 |
Steven

|
Posted: Thu Jan 27 04:32:00 CST 2005 |
Top |
ASP/Active Server Pages >> default value in field
aHR0cDovL2FzcGZhcS5jb20vc2hvdy5hc3A/aWQ9MjE3NA0KDQotLSANCg0KUmVnYXJkcw0KDQpT
dGV2ZW4gQnVybg0KVXIgSS5ULiBNYXRlIEdyb3VwDQp3d3cuaXQtbWF0ZS5jby51aw0KDQpLZWVw
aW5nIGl0IEZSRUUhDQoNCiJMZXggTHV0aG9yIiA8bWFyY29AYnJhaW4tZmFybS5jb20+IHdyb3Rl
IGluIG1lc3NhZ2UgbmV3czojOE9iQ3JFQkZIQS4zNTg4QFRLMk1TRlROR1AxMS5waHguZ2JsLi4u
DQp8IHdpdGggInNlbGVjdCBAQElERU5USVRZIiBpIGdldCB0aGUgdmFsdWUgb2YgdGhlIGxhc3Qg
ZmllbGQgaW5zZXJlZC4uIGkgd291bGQgDQp8IGxpa2UgdG8gZ2V0IGFsc28gdGhlIGZpZWxkLm5h
bWUgaGVscCBtZSBwbGFlc2UgDQp8IA0KfCANCg==
|
| |
|
| |
 |
Bob

|
Posted: Thu Jan 27 07:17:32 CST 2005 |
Top |
ASP/Active Server Pages >> default value in field
Lex Luthor wrote:
> with "select @@IDENTITY" i get the value of the last field insered..
> i would like to get also the field.name help me plaese
That's not possible. The rdbms does not return this information. You need to
know your database and you need to know what your code is doing. And even
then ... Say you run an INSERT statement which inserts data into a table
that contains both an IDENTITY column and a trigger. If the trigger inserts
a record into another table containing an IDENTITY column, @@IDENTITY will
contain the value for the trigger INSERT. In SQL2000, the SCOPE_IDENTITY
function solves this problem; however, it is still up to the developer to
know what table he is inserting records into and what the name of the
IDENTITY column is.
Sorry,
Bob Barrows
--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
|
| |
|
| |
 |
| |
 |
Index ‹ Web Programming ‹ ASP/Active Server Pages |
- Next
- 1
- 2
- Frontpage Client >> Password protect websiteI am developing a website for a condo association. It needs to be password
protected with about 130 separate usernames and passwords.
I can do this using Frontpage user names, but if I do, it breaks on AOL
browsers.
Thomas Rowe MVP suggested I use "server side scripting". I have googled a
number of products that claim to provide website username & password
protection. Does anyone know a good script based product, that works on a
Frontpage site, on all browsers including AOL?
Thank you!
Jeremy
- 3
- ASP/Active Server Pages >> Using wildcard w/Access database[I posted this in the Access forum but the more I think of it, it's probably
more of an ADO issue since I can get it to work in Access but not ASP 30.]
I need to filter an Access 2000 result set in ASP 30 using the ADO
recordset.filter.
I build the filter in pieces. The first clause of the filter is this...
WHERE word LIKE 'S%'
.. to which other clauses are appended with AND.
This all works fine as long as I provide a condition for the first clause
(e.g., word LIKE 'S%').
However, if no condition is specified for the "Word LIKE" clause, I need to
pass a wild card and this is where I have a problem.
I tried constructing the following clauses and encountered the problems
indicated:
sFilter = "word LIKE '%' "
'Arguments are of the wrong type, are out of acceptable range, or are in
conflict with one another.
sFilter = "word LIKE '*' "
'Arguments are of the wrong type, are out of acceptable range, or are in
conflict with one another.
sFilter = "word LIKE ""%"" "
'Empty result set
sFilter = "word LIKE ""*"" "
'Empty result set rs.filter=sFilter
Yet when I try to query directly in Access...
SELECT vWords.Word
FROM vWords
WHERE word LIKE '*';
..it works fine and returns all records.
But this...
SELECT vWords.Word
FROM vWords
WHERE word LIKE '%';
,,,does not return any records
So I am confused about wild cards in Access with ADO.
Without going through complicated logic in the ASP page to test each clause
to build one of several filter sets, how can I pass a wild card to return
all records for a certain condition?
IOW, how do I specify a filter that does this: WHERE word LIKE '*'; in my
ASP 30 page.
- 4
- ASP.Net >> good design time container control example?Does anyone know of a good, simple example of a custom server-side (2.0)
container control, where you can drag drop other controls into an editable
region, and what you see at design time is what you get at runtime?
Paul
- 5
- ASP.Net >> DetailsView: Change TemplateField properties dynamically (vb)Hello,
I am trying to programically make the following TemplateField ("MyTemplate")
visible when the user clicks on the "Edit" Button using the PreRender handle
event. My question is, how do you reference the properties of a particular
TemplateField? For example:
Protected Sub dvDetail_PreRender(ByVal sender As Object, ByVal e As
EventArgs) Handles dvDetail.PreRender
If Me.dvDetail.CurrentMode = DetailsViewMode.Edit Then
MyTemplate.Visible = True
End If
End Sub
<asp:TemplateField
Visible="false"
HeaderText="Activity Date">
<ItemTemplate>
<asp:Label ID="lblActivityDate" Text='<%# Eval("ActivityDate",
"{0:d}") %>' Runat="Server"/>
</ItemTemplate>
<EditItemTemplate>
<asp:TextBox id="txtActivityDate" Text='<%# Bind("ActivityDate",
"{0:d}") %>' Runat="Server" />
</EditItemTemplate>
</asp:TemplateField>
- 6
- 7
- 8
- Frontpage Client >> upload to ftp problemsI am new to web publishing so please correct any
misinformation i may be restating. My web host help desk
says that if I don't use FrontPage to upload my web to
their servers, the Frontpage server extensions will
become corrupted and I will lose some of the
functionality of my site (forms, hit counters, etc.) Is
this true? I have never been able to successfully upload
my site from FrontPage. I always get errors or notices
that some settings are incorrect. I have been using
AceFTP, which is really easy to use and gives me more
control over what I send. Is there another program that
will upload FrontPage sites without corrupting my server
extensions?
- 9
- ASP/Active Server Pages >> Response.Write<a target="_blank"
href="IndividualGamePerformances.asp?MatchID=<%=RS("MatchID")%>&TeamID=<%=Request("TeamID")%>"
>
Can anyone please tell me what to enter after Response.Write to write the
above to the HTTP Response body.
I have been trying but cannot seem to get it right!
- 10
- ASP/Active Server Pages >> publishes ASP pages dont openwhenever i publish my asp pages for a registration page (that send the
info to the database) it doesnt work.. all i get is the file download
wondow asking me to save or open. why woudnlt it work once i put it on
the server.
ive already checked my code and its not that its trying to connect to
the C://.db
what else can this be???
- 11
- 12
- ASP.Net >> bape big tooth shoes=29$<www.cheapest-sell.cn>Hello.every one, our company have much cheap product . please visit
our web,
And chose the product of your like ,let go ,hope you shiping
happy ,Go
www.cheapest-sell.cn
Hotmail:cheapestsell@hotmail.com
Yahoo: cheapestsell@yahoo.com.cn
www.cheapest-sell.cn
Nike Air Jordan 1 ,Nike Air Jordan 2 Shoes,Nike Air Jordan 3,Nike Air
Jordan 4 Shoes ,Nike Air Jordan 5 Chaussure Shoes,Nike Air Jordan 6
Catalog ,Nike Air Jordan 7 Shoes Catalog ,
Nike Air Jordan 8 Customized ,Nike Air Jordan 9 Shoes
Customized ,Nike
Air Jordan 10 Wholesalers,Nike Jordan 11 Shoes Wholesalers,Nike Air
Jordan 12 retailer,Nike Air Jordan 13 Shoes Factory ,Nike Air Jordan
14 Shoes Sell,Nike Air Jordan 16 Exporter ,Nike Air Jordan 17 Shoes
Exporter, Nike Air Jordan 18 Offer, Nike Air Jordan 19 Shoes
Offer,Nike Air Jordan 20 Manufacture,Nike Jordan 21 Shoes
Manufacture,Nike Jordan 22 CUSTOMIZED ,
We Import&Export&Trading&Retail&sell&buy&distribution& Wholesale Nike
footwear and Nikes Sneakers Jordans Sneakers to this market:
USA,America,US,United States,UK,England,United Kingdom,IT,Italy,
NT,Netherlands,China,Chinese,Germany,DE,Greece,GR,France,
FR,Spain,Portugal,Switzerland,Switzerland,Brazil,Chile,Peru,C
Korea,Australia,Hongkong,Canada,Mexico,Etc
Nike shoes | china nike shoes | air jordan sneakers | cheap gucci
shoes | cheap prada sneakers | gucci sneakers | mix jordan sneakers |
chanel sandals | gucci sandals | dior sandals | wholesale jordan
sneakers | nike running shoes | nike stock shoes | air jordan at
whlesale price | nike shoes air jordan supplier from in china |
Lacoste Trainers | puma trainers | louis vuitton purse | prada purse
|
gucci handbags | chanel purse | coach purse | nike bas kerball shoes
|
Nike Sneakers| cheap nike sneakers | nike shoes from china | nike
replica | copy nike sneakers | nike factory stores | nike stores
Nike wholesale - Nike shoes wholesale
nike jordan sneakers wholesale( www.cheapest-sell.cn)
We (http: //www.cheapest-sell.cn)
Wholesale Cheap Jordan
Shoes,Michael
Jordan Shoes,Nike Jordan Basketball shoes, ... Jordan Shoes,Air
Jordan
Sneakers,Air Jordan Wholesale All of the Air Jordan sneakers have
Nike
Air in the shoes.Authentic quality Jordan Sneakers Custom Jordan
Sneakers Wholesale Jordan Sneakers gucci sneakers prada sneakers in
www.cheapest-sell.cn,lv
chanel coach dior DG DSQUARED2 DIESEL,miumiu handbags
sneakers,shoes,t-
shirts,jeans,jackets.We sale new Nike Sneakers,Air Jordan
Sneakers,AIR
FORCE 1S,Nike Dunks SB,Bape Sta from nike outlets and factory
stores,also Nike wholesale-Jordan Shoes,sneakers! china online store!
Cheap Lacoste Trainers Please,Lacoste Trainers for Women,Lacoste
Shoes
Online,Lacoste Shoes for Women,Buy Lacoste Trainers Online,Lacoste
Sneakers(www.cheapest-sell.cn)
Lacoste Footwear,Black Lacoste Trainers,Lacoste Trinity
Trainers(www.cheapest-sell.cn)
Lacoste Leisure Shoe, cheap nike dunks,cheap gucci
sneakers(www.cheapest-sell.cn)
cheap sunglasses factory,wholesale nike tshirts,cheap air jordans
(www.cheapest-sell.cn)
nike sb china wholesale,cheap puma sneakers,sneaker wholesale
china,jordans sneakers,gucci shirts wholesale,cheap bape
trainers,shoe
wholesalers in china,cheap nike sneakers,DISCOUNT nike
SNEAKERS,Tennis
Sneakers,gucci Sneakers, Prada Sneakers,Shoes Jordan's +
Wholesale,jordan wholesale manufacturers,nike customes,cheap
wholesale
jordans nike,cheap tiffany necklace,gucci shoes shop,Wholesale
Distributor Authentic Nike Shoes,wholesale air forces and
jordans,dsquared manufacturers,dsquared womens shoes,dsquared2
jeans,dsquared2
shoes
ed hardy caps,ed hardy caps cheap,ed hardy for cheap,ed hardy hats
for
cheap
addidas wholesalers distributor(www.cheapest-sell.cn)
bulk air force ones for sale(www.cheapest-sell.cn)
Burberry Handbags made in China(www.cheapest-sell.cn)
BUY ARMANI SHOES(www.cheapest-sell.cn)
Buy holesale from china GUCCI(www.cheapest-sell.cn)
buy jordans made in china(www.cheapest-sell.cn)
buy nike shoes at wholesale price(www.cheapest-sell.cn)
- 13
- ASP.Net >> PreRender event questionHowdy all - and seasons greetings
Just wondering, I've recently discovered the PreRender event for .NET (both
for the page and for controls), which seems like a life saver for doing page
data loads that need to occur AFTER event handlers have fired, as well as
after page load and postback. Is this good, bad or common practice?
example
I've got a repeater on the page, and in the header of the repeater I've got
hyperlinks for sorting the repeater and dropdown lists for filtering it, and
therefore the repeater has (I think) to be bound AFTER the hyperlink-click
or dropdownlist-selection-change events, hence pre-render seems to be the
place.
Another case, in the 'job booking system' that I'm building, the job master
needs to be able to change between job master and job worker roles, hence a
role-changing dropdown list at the top of the page, and given the
DDL-selection change events I believe occur after page load, and given in my
case databinding needs to happen after pageload, postback, and after
DDL-selection-change events, PreRender seems to be the ONLY place I can use.
However I've really not seen much about the PreRender event, although there
seems to be a bit around if you're actually searching on the term PreRender.
So I'm slightly hesitant about using it just yet...
Would appreciate any thoughts
Cheers
Matt
- 14
- ASP.Net >> Dynamic data layer compilationI am working on a new project whereby we are going to generate the datalayer
dynamically. Multiple customers will use the system and each customer will
have their own unique datalayer for each of their dataobjects. In other
words, one customer's datalayer for a PERSON object will be different from
another customer's. Changes will be able to be made to the PERSON object
(such as adding a new field) and we will then rewrite the asp.net page that
handles the CRUD activities. This will then get recompiled the next time a
page accesses that dataobject.
My question is whether the entire app gets recompiled or just the particular
page - in other words, if user A is using the app and accessing dataobject A,
does he get impacted in user B changes their dataobject and it then needs to
be recompiled or is only user B impacted? Anyone have any comments about
this architecture and see any problems with it?
- 15
- Frontpage Client >> Media Player embedding issueI know how to embed media player. Is there a way to embed media player and
have it called by a link on the page? Example at one of my websites in
developement:
http://renaraso.com/yoga.htm
My links work for asana, vinyasa and pranayama, but i would like to embed 3
media players (invisible mode) and have those 3 links call their respective
media player to play the wav file seamlessly, that is, with no interuption
of a media player loading on the viewer's pc. I've tried and tried, but
can't seem to put this together.
Tom
|
|
|