Dear thanks you but can you please explain how can I do this, and can you please advice me about hosting problem, does the folder path saved in some where in my code, many thanks
Bataineh
Posts
-
DNN WEbsite -
DNN WEbsiteDear I installed DNN website using VS.net 2008 and after the website finished I try to put it on the C:\Inetpub\wwwroot folder or on the web hosting server, but it does not work an error message: :doh: :doh:
Parser Error Message: It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS. Source Error: Line 70: </system.webServer> Line 71: <system.web> Line 72: <machineKey validationKey="59A121FFDC2D70BE6D724AF408F28842ADD3AAE4" decryptionKey="1701E06AEE1C19DBF7033856F0B6B8845788802AEC00EA83" decryption="3DES" validation="SHA1" /> Line 73: <!-- HttpModules for Common Functionality --> Line 74: <httpModules>
and on the PC localhost the error message<authentication mode="Forms">
-
[Message Deleted]I develop this website using VS.net 2008, I does not put it on wwwroot or using IIS folder
modified on Wednesday, July 8, 2009 3:02 AM
-
[Message Deleted][Message Deleted]
-
Applicxation formI try my email but it not work do you have any idea please
Dim mymsg As New MailMessage Dim mymail As SmtpMail mymsg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserverport", "25"); mymail.SmtpServer = "mail.wunderman-amman.com" mymsg.From = Session("admin@wunderman-amman.com") mymsg.To = "admin@wunderman-amman.com"
'mymsg.To = "ahmad.bataineh@wunderman-me.com;a_bataineh@yahoo.com"
mymsg.Subject = "ATICO Newsletter"
mymsg.BodyFormat = MailFormat.Html
mymsg.Body = ""
mymsg.Body += "New Registration for Newsletter"
mymsg.Body += "Name :" & Session("name_atico") & "
"
mymsg.Body += "Gender :" & Session("gender_atico") & "
"
mymsg.Body += "Date of Birth :" & Session("date_atico") & "
"
mymsg.Body += "Profession :" & Session("pro_atico") & "
"
mymsg.Body += "Company Name :" & Session("company_atico") & "
"
mymsg.Body += "Position :" & Session("position_atico") & "
"
mymsg.Body += "Telephone :" & Session("tel_atico") & "
"
mymsg.Body += "Mobile :" & Session("mobile_atico") & "
"
mymsg.Body += "Email :" & Session("email_atico") & "
"
mymsg.Body += "Address :" & Session("address_atico") & "
"
mymsg.Body += ""
mymail.SmtpServer = "mail.wunderman-amman.com"
mymail.Send(mymsg)
Response.Redirect("thanks.aspx") -
Applicxation formI make an application form it fill data into access database and send email notification, it work good but no emails I received can you please help //the code
Imports System.Data.OleDb
Imports System.Web.MailPublic Class newsletter1
Inherits System.Web.UI.Page#Region " Web Form Designer Generated Code "
'This call is required by the Web Form Designer. <system.diagnostics.debuggerstepthrough()> Private Sub InitializeComponent() End Sub Protected WithEvents btn\_submit As System.Web.UI.WebControls.Button Protected WithEvents Label1 As System.Web.UI.WebControls.Label Protected WithEvents Image1 As System.Web.UI.WebControls.Image Protected WithEvents chk\_atico As System.Web.UI.WebControls.CheckBox Protected WithEvents chk\_howard As System.Web.UI.WebControls.CheckBox Protected WithEvents chk\_fakhreldin As System.Web.UI.WebControls.CheckBox Protected WithEvents chk\_vinaigrate As System.Web.UI.WebControls.CheckBox Protected WithEvents chk\_trattoria As System.Web.UI.WebControls.CheckBox Protected WithEvents chk\_nai As System.Web.UI.WebControls.CheckBox Protected WithEvents chk\_wild As System.Web.UI.WebControls.CheckBox Protected WithEvents chk\_amigo As System.Web.UI.WebControls.CheckBox Protected WithEvents chk\_bistro As System.Web.UI.WebControls.CheckBox Protected WithEvents chk\_renchai As System.Web.UI.WebControls.CheckBox Protected WithEvents chk\_taboula As System.Web.UI.WebControls.CheckBox 'NOTE: The following placeholder declaration is required by the Web Form Designer. 'Do not delete or move it. Private designerPlaceholderDeclaration As System.Object Private Sub Page\_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init 'CODEGEN: This method call is required by the Web Form Designer 'Do not modify it using the code editor. InitializeComponent() End Sub
#End Region
Private Sub Page\_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'Put user code to initialize the page here End Sub Private Sub btn\_submit\_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn\_submit.Click Dim intid As Integer Dim atico As Integer Dim amigo As Integer Dim bistro As Integer Dim fakh As Integer Dim howard As Integer Dim nai As Integer Dim chai As Integer Di
-
search erroryou can enter the site www.gkc-jo.com on firefox and see the problems in the Home page in the tab control and in the news right the screen
-
search errorI write all the code for the search it not all put sinceit work good in my pc i think the error in this ( the code in big ) no it does not work good in firefox in my pc but it do in Microsoft explorer
-
search errorHello all can you help me to explain where is the error in this code I make search for my website and it work good in the localhost but there are an error when i make search in the hostting www.gkc-jo.com and tab control not work in firefox explorer
string sa = Request.ToString(); SearchEngine.Search test = new SearchEngine.Search(Request.Url.ToString()); DataTable yalla = test.SearchWord(Request.QueryString["W"]); GridView1.DataSource = yalla; GridView1.DataBind(); lblResults.Text = yalla.Rows.Count.ToString();
public Search(string URL) { string[] SplitWebSitePath = System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase.ToString().Split('/'); for (int i = 3; i < SplitWebSitePath.Length-2; i++) { if (this._WebSitePath == string.Empty) { this._WebSitePath = SplitWebSitePath[i]; } else { this._WebSitePath = this._WebSitePath + "\\" + SplitWebSitePath[i]; } } int ha= URL.IndexOf(SplitWebSitePath[SplitWebSitePath.Length-3]); this._URL = URL.Substring(0, ha ) + SplitWebSitePath[SplitWebSitePath.Length - 3] + "/"; WebSiteFiles.Columns.Add("HeadLine"); WebSiteFiles.Columns.Add("Content"); WebSiteFiles.Columns.Add("URL"); } #endregion #region Properties... public string _URL { get { return sURL; } set { sURL = value; } } public string _WebSitePath { get { return sWebSitePath; } set { sWebSitePath = value; } }
-
problem in the site searchplease Enter www.gkc-jo.com Home page there are an error in the firefox in tab control and in the news thank you for the help in the menu problem
-
problem in the site searchHello i make an web site and make on it search engine local to my web site and it work god in the localhost but wen i do it over the internet an error happen i think the erro in this code
public Search(string URL) { string[] SplitWebSitePath = System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase.ToString().Split('/'); for (int i = 3; i < SplitWebSitePath.Length-2; i++) { if (this._WebSitePath == string.Empty) { this._WebSitePath = SplitWebSitePath[i]; } else { this._WebSitePath = this._WebSitePath + "\\" + SplitWebSitePath[i]; } } int ha= URL.IndexOf(SplitWebSitePath[SplitWebSitePath.Length-3]); this._URL = URL.Substring(0, ha ) + SplitWebSitePath[SplitWebSitePath.Length - 3] + "/"; WebSiteFiles.Columns.Add("HeadLine"); WebSiteFiles.Columns.Add("Content"); WebSiteFiles.Columns.Add("URL"); }
another problem in the same project when i open it on firefox explorer the menu hiden behind the fash how can i fix it it work god in microsoft internet explorer and thanks