196 Posted Topics

Member Avatar for kgenn
Member Avatar for himanshu_roy81

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 …

Member Avatar for vuyiswamb
0
571
Member Avatar for lordmwesh

ok tell me , you dont see your Database or it shows but with a Red "Arrow" Pointing Down

Member Avatar for vuyiswamb
0
191
Member Avatar for VRamone

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 …

Member Avatar for vuyiswamb
0
147
Member Avatar for MARKAND911

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]

Member Avatar for questpond
0
178
Member Avatar for 123mehran

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.

Member Avatar for vuyiswamb
0
61
Member Avatar for denmarkstan
Member Avatar for kgenn
Member Avatar for sureshselvaraj
Member Avatar for game4tress
Member Avatar for vuyiswamb
0
126
Member Avatar for kieky

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 …

Member Avatar for vuyiswamb
0
60
Member Avatar for nicecandy

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

Member Avatar for vuyiswamb
0
84
Member Avatar for nebyas

What you need is called "LDAP" You can have many application and query the active Directory

Member Avatar for vuyiswamb
0
68
Member Avatar for vuyiswamb

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 …

0
70
Member Avatar for erum

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]

Member Avatar for erum
0
213
Member Avatar for Netcode
Member Avatar for Netcode
-1
68
Member Avatar for satiss7pwr

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 …

Member Avatar for Ramesh S
0
158
Member Avatar for rohand
Member Avatar for alokshri67

its supposed to be [CODE] Response.Write("<script>alert('hello');</script>")[/CODE]

Member Avatar for alokshri67
0
78
Member Avatar for malashukla
Member Avatar for vuyiswamb
0
69
Member Avatar for sachintha81

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.

Member Avatar for vuyiswamb
0
246
Member Avatar for vuyiswamb

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 …

0
67
Member Avatar for umair.sabri
Member Avatar for sagarkalokhe09

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.

Member Avatar for sagarkalokhe09
0
116
Member Avatar for dirkjan75

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]

Member Avatar for dirkjan75
0
140
Member Avatar for router.exe

it is not always recomended to use win auth, you need to create a user in sql for your app.

Member Avatar for vuyiswamb
0
85
Member Avatar for canterorist
Member Avatar for vuyiswamb
0
95
Member Avatar for snehalj

then you need something like this [CODE] GridView1.Rows[i].Cells[5].Text = year;[/CODE] your i will be your row index

Member Avatar for pharindra
0
96
Member Avatar for canterorist
Member Avatar for Aaron44

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.

Member Avatar for Aaron44
0
99
Member Avatar for Jal_Pari

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"

Member Avatar for vuyiswamb
0
34
Member Avatar for MichaelWClark
Member Avatar for shoestring
0
218
Member Avatar for ptemedia

if you have a Category then you can do something like this [CODE] DropDownList1.SelectedItem = "I am a Default Selection";[/CODE]

Member Avatar for ptemedia
0
477
Member Avatar for Xcelled194

What you need to do is to add triggers in your update panel and select the textbox and select the correct event.

Member Avatar for vuyiswamb
0
90
Member Avatar for haro2x

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.

Member Avatar for sujimon
0
168
Member Avatar for jackparsana

[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. …

Member Avatar for jackparsana
0
213
Member Avatar for router.exe

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]

Member Avatar for router.exe
0
2K
Member Avatar for vuyiswamb

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 …

0
50
Member Avatar for vuyiswamb

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 …

0
44
Member Avatar for vuyiswamb

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 …

0
84
Member Avatar for Jesi523

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]

Member Avatar for Jesi523
0
145
Member Avatar for JohnPhilipps

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 …

Member Avatar for vuyiswamb
0
112
Member Avatar for g_manev
Member Avatar for nmges

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 ?

Member Avatar for nmges
0
96
Member Avatar for maluvel

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 …

Member Avatar for kad1r
0
101
Member Avatar for iamchamith

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 …

Member Avatar for vuyiswamb
0
93
Member Avatar for iamchamith

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 …

Member Avatar for vuyiswamb
0
1K
Member Avatar for vamsikrishna20

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]

Member Avatar for vamsikrishna20
0
86
Member Avatar for phook

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]

Member Avatar for vuyiswamb
0
48
Member Avatar for jamshed ahmed

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 …

Member Avatar for jamshed ahmed
0
2K

The End.