dotnetnuke

Not able to make bootstrap responsive design work with dotnetnuke

牧云@^-^@ 提交于 2019-11-27 23:01:41
I have used twitter bootstrap in my project with DotNetNuke. I did my designing and layout using HTML, CSS, bootstrap. The responsive design was working fine when I tested it on different mobile devices and even if when I resize my browser window. As it was working well, I converted the design to DotNetNuke Skin. Now, the responsive design works fine only when I resize the browser window and not on mobile devices. I understand the flow in which DNN loads stylesheets and I have followed it. I have made my skin.css as a combination of bootstrap.css and followed by the content of bootstrap

numeric-only textbox as a control in Visual Studio toolbox

試著忘記壹切 提交于 2019-11-27 22:36:18
I would like to make one numeric-only textbox. I'd like to then add that same to the control toolbox within Visual Studio 2008 I've already built the function to allow only numeric. How can I make it available in the toolbox? Serkan Hekimoglu This is how you can create numeric TextBox : public class NumericTextBox : TextBox { protected override void OnKeyPress(KeyPressEventArgs e) { if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar)) { e.Handled = true; } base.OnKeyPress(e); } } Call this method on key press function NumberOnly(evt) { var charCode = (evt.which) ? evt.which : event

The SELECT permission was denied on the object 'sysobjects', database 'mssqlsystemresource', schema 'sys'

萝らか妹 提交于 2019-11-27 21:46:34
SETUP: SQL Server 2005 & DotNetNuke 05.01.02. This started with me trying to install a DNN Module that had "select * from dbo.sysobjects" in it's SQL scripts. That failed with the following error: The SELECT permission was denied on the object 'sysobjects', database 'mssqlsystemresource', schema 'sys'. I logged into the database via SQL Server Management Studio as the DNN user account, and I get the same error when I try and perform a SELECT on the sysobjects view. I tried to grant the DNN user account explicit SELECT permission to that view. When I check it by going to Security -> Users ->

“The 'Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine”…DNN

被刻印的时光 ゝ 提交于 2019-11-27 18:32:23
问题 I'm trying to get a new DotNetNuke site up and running on our 64-bit server, and I'm encountering the following error message: "The 'Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine" I know from experience that you run into this when you target a 64-bit assembly on a 64-bit machine (there is no 64 bit OLE-DB provider currently). In that case, I simply target the x86 in Visual Studio and everything works fine. But in this case, the site uses dynamic compilation, so

Binary Data Posting with curl

烂漫一生 提交于 2019-11-27 01:44:20
问题 So basically, I'm trying to write a series of scripts to interact with Dot Net Nuke. I've been analysing the traffic and can now login and do some basic tasks. However, I've never handled binary file upload with curl. Would someone be willing to look at this to help me out? Here's the anatomy of the request: http://pastebin.com/qU8ZEMaQ Here's what I've got for curl so far: http://pastebin.com/LG2ubFZG edit: For the lazy - length of the file is achieved and stored in LENGTH STUFF is just a

Not able to make bootstrap responsive design work with dotnetnuke

送分小仙女□ 提交于 2019-11-26 21:17:13
问题 I have used twitter bootstrap in my project with DotNetNuke. I did my designing and layout using HTML, CSS, bootstrap. The responsive design was working fine when I tested it on different mobile devices and even if when I resize my browser window. As it was working well, I converted the design to DotNetNuke Skin. Now, the responsive design works fine only when I resize the browser window and not on mobile devices. I understand the flow in which DNN loads stylesheets and I have followed it. I

The SELECT permission was denied on the object 'sysobjects', database 'mssqlsystemresource', schema 'sys'

核能气质少年 提交于 2019-11-26 20:50:55
问题 SETUP: SQL Server 2005 & DotNetNuke 05.01.02. This started with me trying to install a DNN Module that had "select * from dbo.sysobjects" in it's SQL scripts. That failed with the following error: The SELECT permission was denied on the object 'sysobjects', database 'mssqlsystemresource', schema 'sys'. I logged into the database via SQL Server Management Studio as the DNN user account, and I get the same error when I try and perform a SELECT on the sysobjects view. I tried to grant the DNN