Feeds:
Posts
Comments

Archive for December, 2007

Our software application is not doing validation for some buttons such as “back” button or “return” button, in order to disable the validation on the page, just simply change the button’s causeValidation to “false” will do.

Read Full Post »

I m browsing around, then I found this.
http://www.dotnetnuke.com/Community/Forums/tabid/795/forumid/111/threadid/74227/scope/posts/Default.aspx by Michael Washington

Read Full Post »

To avoid “dirty” files upload by the user of the DNN, most of the time Administrator of the System will do it, If you want to disable the DNN UrlControl which only allow user to assign file but not upload the file, you can use following code…
<dnn:url id=”ctlVideoURL” runat=”server” width=”300″ showfiles=”True” ShowUpLoad=”false” showUrls=”False” shownewwindow=”False”showtrack=”False” showlog=”False” [...]

Read Full Post »

DNN v4.7 included Store Module, is time to check it out.
Click Here for more information to configure DNN Store Module.

Read Full Post »

Objective to create DNN table & SP scripts is ease for deployment.
Here some very simple example,
CREATE TABLE {databaseOwner}[{objectQualifier}tbl_XYZ](
[xyzId] [int] IDENTITY(1,1) NOT NULL,
[xyzName] [varchar] (100) NOT NULL,
) ON [PRIMARY]
if exists (select * from dbo.sysobjects where id = object_id(N’{databaseOwner}[{objectQualifier}tbl_XYZ]‘) and OBJECTPROPERTY(id, N’IsProcedure’) = 1)
drop procedure {databaseOwner}{objectQualifier}tbl_XYZ_add
GO

Please take note on those red highlighted, you must included this [...]

Read Full Post »

Please delete the cache which located in <%System Drive%>\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\<%Project Name%>
if the system not allow you to delete becauseĀ of “currently in used”, you can choose to restart the system or issue “iisreset” in command prompt.

Read Full Post »

if you have such problem, you just put
<param name=”wmode” value=”transparent”>
and
wmode=”transparent”
in your embed code which playing the flash.
you can find full document here from Adobe website

Read Full Post »

I m have a hard time when I m need to figure out how to configure the email in DNN. (next time I m must read the manual properly)
I put the right SMTP server and port but still not manage to send email out, thenĀ I noticed I did not put the host email in “host [...]

Read Full Post »

in case your application got a function for exporting to excel, some of you might having the same problem when we click on the button, the system will simply pompt us a javascript pop up error, but weird, it work well in ordinary aspx page.
after i m disable the partial rendering, it back to work [...]

Read Full Post »