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.
Archive for December, 2007
More on DNN Module Development.
Posted in DNN Module Development, DotNetNuke v4, dnn, dotnetnuke, tagged DNN Module Development on December 27, 2007 | Leave a Comment »
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
Disable upload feature for DNN UrlControl
Posted in DNN Module Development, DotNetNuke v4, dotnetnuke, tagged DNN UrlControl on December 26, 2007 | Leave a Comment »
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” [...]
Configure DNN – Store Module
Posted in DNN Deployment, DNN Module Development, DNN Store, DotNetNuke v4, dnn, dotnetnuke, tagged DNN Store on December 19, 2007 | Leave a Comment »
DNN v4.7 included Store Module, is time to check it out.
Click Here for more information to configure DNN Store Module.
Create DNN’s Table & SP script
Posted in DNN Deployment, tagged DNN Deployment on December 19, 2007 | 2 Comments »
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 [...]
Delete the cache if updated code is not affect the change!
Posted in ASP.NET 2.0, tagged asp.net on December 17, 2007 | Leave a Comment »
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.
Flash Movie overlap the DNN CSS Menu
Posted in DotNetNuke v4 on December 5, 2007 | Leave a Comment »
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
Use Email Service Offered by DNN
Posted in DNN Module Development, DotNetNuke v4, dnn, dotnetnuke, tagged dotnetnuke on December 5, 2007 | Leave a Comment »
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 [...]
Export to Excel not work well with partial rendering?
Posted in DNN Module Development, DotNetNuke v4, dnn, dotnetnuke, tagged dotnetnuke on December 2, 2007 | Leave a Comment »
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 [...]