196 Posted Topics
Re: Does your code return any Errors ? | |
Re: ok if i undersstand you correctly , you want to show the users based on the selected user on the Dropdownlist, if so , 1) You dont look like you filter your results 2) Does your Dropdownlist show data ? if so , you still need to set te DataValueField … | |
Re: ok tell me , you dont see your Database or it shows but with a Red "Arrow" Pointing Down | |
Re: ok, i am a C# man, but you can easly Convert the code. first , in the first listbox you dont need to check every item. in the ListBox1_SelectedIndexChanged you must have only one line, this line will add the item in the second listbox like this [CODE]ListBox2.Item.add(ListBox1.selectedItem); [/CODE] this … | |
Re: Wrap your Controls in an Update-panel the flickering will go away as i did here [URL="http://www.dotnetfunda.com/articles/article732-how-to-create-ficker-free-pages-aspnet-ajax-.aspx"]http://www.dotnetfunda.com/articles/article732-how-to-create-ficker-free-pages-aspnet-ajax-.aspx [/URL] | |
Re: You question is very broad. I think every control in your VS , play an important role in different types of Application. i think you should buy a book, it is not easy to answer your question. | |
Re: Your Site is not Developed with asp.net, i see you used Flash | |
Re: Well i am not a fan of Linq to SQL, i still prefare SQL Server to do the work on an Engine that stil stays in my DB. but to Answer your question. In SQL this would be enough [CODE]SELECT COUNT(IDComment) from Comment c inner join Topic t on c.IDTOPIC … | |
Re: I have written an article a long time ago about that [URL="http://www.dotnetfunda.com/articles/article781-how-to-consume-third-party-webservice-in-aspnet-.aspx"] http://www.dotnetfunda.com/articles/article781-how-to-consume-third-party-webservice-in-aspnet-.aspx[/URL] Look at it. It shows how i consumed it in asp.net Hope it helps Vuyiswa Maseko | |
Re: What you need is called "LDAP" You can have many application and query the active Directory | |
Good Day All I have a web Method defined like this [CODE] [System.Web.Services.WebMethod] public static bool CheckSessionExpiration() { System.Web.HttpContext.Current.Session["CurrentLoginUser"] = null; //This is for Testing Purpose if (UserSecurity.GetLoggedInUser() == null) { return false; } else { return true; } }[/CODE] and in Jquery i have a function that calls this … | |
Re: Here is a Simple Example that you can use to send an email to Gmail , if you want to send from hotmail or yahoo , just change the port and the Smtp [URL="http://www.dotnetfunda.com/articles/article747-how-to-send-an-email-using-gmail-in-aspnet-.aspx"]http://www.dotnetfunda.com/articles/article747-how-to-send-an-email-using-gmail-in-aspnet-.aspx[/URL] | |
| |
Re: If you are writing a .NEt Application even if its in java or C++ , you don't need to install Oracle on the clients machine. The Oracle should be on the Server and should be accessed by your clients application from there. I have never written any apps that target … | |
Re: I am not Sure if it is possible to add controls in a Windows Service. | |
Re: its supposed to be [CODE] Response.Write("<script>alert('hello');</script>")[/CODE] | |
Re: I am not sure what you are doing there, What is the purpose of your code ? | |
Re: You do not need to store values, What you need to do is to wrap your controls inside an Update Panel and you will get a partial update. and your values will be retained. | |
Good Day All I have 20 Textboxes and when there are duplicates in those textboxes , i store them in a List<string> and on fly i build a CheckBoxList and display that as a modal and in that i have a close button to allow the user to correct the … | |
Re: The Control that you are using to Navigate with must have a property "Causesvalidation" e.g if you click a Button to move to another page, the there is a Property in a button named "Causesvalidation". set it to false and it will work. | |
Re: I have Written Articles on that Subject years ago look at this links [URL="http://www.codeproject.com/KB/cs/NTier.aspx"]http://www.codeproject.com/KB/cs/NTier.aspx[/URL] [URL="http://www.codeproject.com/KB/cs/NTier.aspx"] http://www.codeproject.com/KB/cs/NTier.aspx[/URL] [URL="http://www.codeproject.com/KB/cs/N-Tier22.aspx"]http://www.codeproject.com/KB/cs/N-Tier22.aspx[/URL] [URL="http://www.codeproject.com/KB/vb/N-Tier_Application_VB.aspx"]http://www.codeproject.com/KB/vb/N-Tier_Application_VB.aspx[/URL] [URL="http://www.codeproject.com/KB/cs/N-Tier22.aspx"]http://www.codeproject.com/KB/cs/N-Tier22.aspx[/URL] | |
Re: it is not always recomended to use win auth, you need to create a user in sql for your app. | |
Re: What is the Error ? Do you use the "Button1" to redirect ? | |
Re: then you need something like this [CODE] GridView1.Rows[i].Cells[5].Text = year;[/CODE] your i will be your row index | |
Re: [url]http://forums.asp.net/t/1375018.aspx[/url] | |
Re: 1) Let me See an example of your web config ? 2) Can you logon to the server , using SQL manament studio and see if you can connect , to test this use the credentials you provided in the web config. | |
Re: In ASp.NEt we dont use Frames anymore, if you are talking about Consistant look , you must use Master pages, please google for "master pages in asp.net" | |
Re: try this [CODE]exec dbo.usp_GetPropertyData(1,15,'',1)[/CODE] | |
Re: if you have a Category then you can do something like this [CODE] DropDownList1.SelectedItem = "I am a Default Selection";[/CODE] | |
Re: What you need to do is to add triggers in your update panel and select the textbox and select the correct event. | |
Re: aspspider are the one who can help you on this. i used to host at Somee.com for free , but they mysteriously deleted my database ,so free web hosting for a database is not safe. but you need ask them the connection string. | |
Re: [B]You wrote : The Problem is I can't run Application without installing Vs?[/B] I don't believe this , is this a Question because i see a question mark. [B] You wrote:is there any solution? can I run setup without install visual studio?[/B] yes you can, it should be like that. … | |
Re: i have once written an article about this look at this [URL="http://www.dotnetfunda.com/articles/article733-how-to-use-updateprogress-control-aspnet-ajax-.aspx"] http://www.dotnetfunda.com/articles/article733-how-to-use-updateprogress-control-aspnet-ajax-.aspx[/URL] | |
Good Day All i have Successfully binded the Telerik Schedular from Objects and its looking Good. Now i have to Bind the same results but in hierachial form. Please note that i am using Telerik Grid and the implementation is the same as asp.net Gridview. i need someone to Guide … | |
Good Day All I have a Method that i have defined that i will access in JavaScript(Page Method) and its defined like this [CODE] [WebMethod, System.Web.Script.Services.ScriptMethod] public static void Getadata(String StrSearch) { View obj = new View(); obj.Bind_SearchBox(StrSearch); // return Scriptt; }[/CODE] And the Bind_SearchBox() method is a non static … | |
Good Day All i have a Function e.g [CODE] public String Getdata(String mystr) { //Do what ever //return a String }[/CODE] and i want to call this function and pass data in Javascript like this [CODE]function KeyPress() { var TExtbox1 = document.getElementById('Text1'); if (TExtbox1.value.length == 2) { //call the function … | |
Re: I think you need a Scheduler, Someone asked this Yesterday. I have the Same Answer for you too, there are Schedulers that you can use. I am doing the timetabling and Resource Management System use Telerik Schedular its Good , look at this [URL="http://demos.telerik.com/aspnet-ajax/scheduler/examples/resourceavailability/defaultcs.aspx"]http://demos.telerik.com/aspnet-ajax/scheduler/examples/resourceavailability/defaultcs.aspx [/URL] | |
Re: Doing this is not an easy thing to do, especially if you are new. i suggest you use a third party control called Schedular. Look at this link, they are doing exactly what you want. [URL="http://demos.telerik.com/aspnet-ajax/scheduler/examples/outlook2007/defaultcs.aspx"]http://demos.telerik.com/aspnet-ajax/scheduler/examples/outlook2007/defaultcs.aspx[/URL] i have been designing this kind of systems for a long time. Timetabling and … | |
Re: What is your Problem? | |
Re: i am a little bit confused by your explanation. Are you saying , you have created a Windows application that has a TextBox named TextBox3 and you created a Web Application and you want to use the Value of a Windows application the Web Application ? | |
Re: First this is wrong [CODE] [B]Sesssion[/B]["name"] = "lam";[/CODE] infact in ASP.NET you would have gotten an Error. If want to create a Session from page1 and Access it in Page2 you have to do this Page1 [CODE] Session["MySessionName"] = "Hello World";[/CODE] and on Page2 you can access the Session that … | |
Re: Good Day iamchamith The First thing you need to Do is give them a backup of your Database and they will create it for you on the other side and give you the Connectionstring or most hosting Companies give you an option in the Control panel of the Domain to … | |
Re: The Error means that your connection string is not Correct. The Username aka [B]user id[/B] has an invalid user. i see in your web config [CODE] <add name="Adv" connectionString="Data Source=.;Initial Catalog=model;Integrated Security=True;User ID=sa;password = password123;"/>[/CODE] You still have a "." that indicates the default sql instance. the best Way to … | |
Re: Look at this posts they might help [URL="http://social.msdn.microsoft.com/Forums/en-US/vsto/thread/7481e412-5a7f-4251-9483-9ffd55b59caa"] http://social.msdn.microsoft.com/Forums/en-US/vsto/thread/7481e412-5a7f-4251-9483-9ffd55b59caa[/URL] [URL="http://www.dreamincode.net/forums/topic/75041-copy-contents-of-array-to-clipboard/"]http://www.dreamincode.net/forums/topic/75041-copy-contents-of-array-to-clipboard/[/URL] | |
Re: Look at this [URL="http://www.dotnetfunda.com/articles/article808-how-to-write-a-simple-login-page-in-aspnet-.aspx"]http://www.dotnetfunda.com/articles/article808-how-to-write-a-simple-login-page-in-aspnet-.aspx[/URL] | |
Re: Yes the textbox will always be clear. there is only one Solution to this , is to use Ajax.if the flickering of the page causes this, what you need to do, is to add a scriptmanager to your page and add an updatepanel and add the textbox inside the Update … |
The End.