Click here to Skip to main content
15,923,219 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionASP.NET menu seems to clear browser's history [modified] Pin
Rey99996-May-08 22:01
Rey99996-May-08 22:01 
General.net website problem in firefox,safari Pin
sreenivasuluvadde6-May-08 21:29
sreenivasuluvadde6-May-08 21:29 
GeneralRe: .net website problem in firefox,safari Pin
R. Giskard Reventlov6-May-08 21:37
R. Giskard Reventlov6-May-08 21:37 
GeneralRe: .net website problem in firefox,safari Pin
N a v a n e e t h6-May-08 22:05
N a v a n e e t h6-May-08 22:05 
GeneralRe: .net website problem in firefox,safari Pin
eyeseetee6-May-08 22:09
eyeseetee6-May-08 22:09 
QuestionDeveloper Server Under Vista Pin
Jan Hirak6-May-08 21:08
Jan Hirak6-May-08 21:08 
AnswerRe: Developer Server Under Vista Pin
eyeseetee6-May-08 21:46
eyeseetee6-May-08 21:46 
Questionsearch error Pin
Bataineh6-May-08 20:58
Bataineh6-May-08 20:58 
Hello 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();<br />
       SearchEngine.Search test = new SearchEngine.Search(Request.Url.ToString());<br />
       DataTable yalla = test.SearchWord(Request.QueryString["W"]);<br />
       GridView1.DataSource = yalla;<br />
       GridView1.DataBind();<br />
       lblResults.Text = yalla.Rows.Count.ToString();






 public Search(string URL)<br />
        {<br />
            <br />
            string[] SplitWebSitePath = System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase.ToString().Split('/');<br />
            for (int i = 3; i < SplitWebSitePath.Length-2; i++)<br />
            {<br />
                if (this._WebSitePath == string.Empty)<br />
                {<br />
                    this._WebSitePath = SplitWebSitePath[i];<br />
                }<br />
                else<br />
                {<br />
                    this._WebSitePath = this._WebSitePath + "\\" +  SplitWebSitePath[i];<br />
                }<br />
            }<br />
            int ha= URL.IndexOf(SplitWebSitePath[SplitWebSitePath.Length-3]);<br />
            this._URL = URL.Substring(0, ha ) + SplitWebSitePath[SplitWebSitePath.Length - 3] + "/";<br />
            WebSiteFiles.Columns.Add("HeadLine");<br />
            WebSiteFiles.Columns.Add("Content");<br />
            WebSiteFiles.Columns.Add("URL");<br />
        }<br />
<br />
        #endregion<br />
<br />
        #region Properties...<br />
<br />
        public string _URL<br />
        {<br />
            get { return sURL; }<br />
            set { sURL = value; }<br />
        }<br />
        public string _WebSitePath<br />
        {<br />
            get { return sWebSitePath; }<br />
            set { sWebSitePath = value; }<br />
        }<br />

AnswerRe: search error Pin
eyeseetee6-May-08 21:42
eyeseetee6-May-08 21:42 
GeneralRe: search error Pin
Bataineh6-May-08 21:51
Bataineh6-May-08 21:51 
GeneralRe: search error Pin
eyeseetee6-May-08 22:07
eyeseetee6-May-08 22:07 
GeneralRe: search error Pin
Bataineh6-May-08 22:14
Bataineh6-May-08 22:14 
QuestionWindows Control on Web Form Pin
Chetan Ranpariya6-May-08 20:57
Chetan Ranpariya6-May-08 20:57 
AnswerRe: Windows Control on Web Form Pin
eyeseetee6-May-08 21:38
eyeseetee6-May-08 21:38 
QuestionRe: Windows Control on Web Form Pin
Chetan Ranpariya6-May-08 23:24
Chetan Ranpariya6-May-08 23:24 
QuestionPage on a Page Pin
Reelix6-May-08 20:46
Reelix6-May-08 20:46 
AnswerRe: Page on a Page Pin
N a v a n e e t h6-May-08 20:48
N a v a n e e t h6-May-08 20:48 
QuestionHow to create a Flat Drop down list in asp.net Pin
Abhijit Jana6-May-08 20:13
professionalAbhijit Jana6-May-08 20:13 
AnswerRe: How to create a Flat Drop down list in asp.net Pin
N a v a n e e t h6-May-08 20:20
N a v a n e e t h6-May-08 20:20 
GeneralRe: How to create a Flat Drop down list in asp.net Pin
Abhijit Jana6-May-08 20:34
professionalAbhijit Jana6-May-08 20:34 
GeneralRe: How to create a Flat Drop down list in asp.net Pin
N a v a n e e t h6-May-08 20:42
N a v a n e e t h6-May-08 20:42 
GeneralRe: How to create a Flat Drop down list in asp.net Pin
Abhijit Jana6-May-08 20:52
professionalAbhijit Jana6-May-08 20:52 
GeneralRe: How to create a Flat Drop down list in asp.net Pin
N a v a n e e t h6-May-08 20:55
N a v a n e e t h6-May-08 20:55 
QuestionHow to use the Date Format for Localization? Pin
Johndas6-May-08 20:10
Johndas6-May-08 20:10 
QuestionCheck for invalid Email-id Pin
nagendrathecoder6-May-08 19:52
nagendrathecoder6-May-08 19:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.