13,153 Topics

Member Avatar for
Member Avatar for fungus00

Hi all First of all I wana tell about my self,, im not a good coder you can say im newbie. I have a problem with jQuery autocomplete. I want to dispaly images in autocomplete. Image path save in DB and physically every image is in different folder. I have …

Member Avatar for JorgeM
0
682
Member Avatar for Smith Cole

Anyone can help me to find the best provider to recommend a reliable web hosting who can give cheap asp.Net hosting. I've found some information about from Myasp.net.

Member Avatar for JorgeM
0
32
Member Avatar for Violet_82

Hello guys, a while back I posted something about what was needed to build an overtime app that stored data permanently on the server (here is the post https://www.daniweb.com/web-development/php/threads/467433/change-content-of-html-page-with-php) and I was told to use PHP. I have to say I've never got around that, but now I'm looking into …

Member Avatar for Violet_82
1
888
Member Avatar for m.a.u.

Greetings everybody, I have been developing a C++ Win. Forms application in VS2010 to acquire data from an external device continuously. In the tutorial of the device the followings are given about commucating with device through RS-232. The external device has a communication format of 38400 baud, 8 data bits, …

Member Avatar for m.a.u.
0
2K
Member Avatar for divyakrishnan

Hi.. How to get the difference between two dates using C#.NET web application in form of days? If anybody knows plz help me..Itz very urgent.

Member Avatar for AMBIgainathan
0
3K
Member Avatar for denmarkstan

Help me identify which Asp.net tool i can use to achieve this(On this image i uploaded). If possible refer me to a tutorial that would help me achieve something like this. Your effort is highly appreciated. Thanks!

Member Avatar for pritaeas
0
171
Member Avatar for dhatsah

I have a form where the user can select an image (via a file dialogue) of any size which is then previewed in a pictureBox sized at 150px by 150px with the sizeMode of the pictureBox set to zoom any space that is then not occupied by the image is …

Member Avatar for Fenrir()
0
366
Member Avatar for kaziraja

table1 --- column1 1002008000300-53-9 table2--- column1 column2 column3 1002008000300 53 9 how to populate from table1 to table2 SQL and ASP.Net(Csharp)

Member Avatar for madCoder
-1
123
Member Avatar for kaziraja

can u please help me with this code in charp in need to update bulk data . if t1.cola=t2.cola t1.colb=t2.colb from tab1 t1 and tab2 t2 where t2. colc is not null then, set t1.colc=t2.colc else set t1.colc=t2.cold where t2.colc is null

Member Avatar for kaziraja
0
113
Member Avatar for rocketmail

I want some information about any .net library for merging of videos(no matter either is paid or free). If someone has some idea regarding this then please let me know. I have tried splicer and FFMPEG wrapper for .net also but could not find them useful for me. According to …

0
70
Member Avatar for codewar

Hello, Team. I am stuck here at the finish-line on this program, I am trying to create a Click event handler for the Confirm button to save the “txtSales”, “lblDiscountAmount”, and “lblTotalPrice” in session state. Once the Confirm button is clicked it will take the user to the Confirmation page …

Member Avatar for JorgeM
0
446
Member Avatar for KushMishra

Hello All, I am developing an application in WPF in which I need to set a generic input bindings for TAB key for every field present in the view. I somehow managed to create a common method but now I wnat to retrieve on which field the TAB key has …

Member Avatar for KushMishra
0
420
Member Avatar for riyaz123
Member Avatar for madcour11

I have one line of code that throws an exception, and when the catch(Exception ex) line executes, ex is NULL. Am I interpreting this correctly? If this is happening, does anyone have an idea of how this could occur? I am using a lot of Telerik RAD controls, could that …

Member Avatar for hericles
0
163
Member Avatar for ashok.aryan.92

# query1 # > reply 1 > reply 2 *your reply with button and textbox option* # query 2 # > reply 1 > reply 2 *your reply with button and textbox option* # query 3 # > reply 1 > reply 2 > reply 3 *your reply with button …

Member Avatar for JorgeM
0
47
Member Avatar for Yorkiebar14

Hello, This is the first time I've attempted creating controls at runtime, and I'm not sure why the following code isn't working; private void Popup_Load(object sender, EventArgs e) { Panel panel2 = new Panel(); panel2.Size = new Size(1280, 720); panel2.Location = new Point(20, 20); panel2.BackColor = Color.Red; this.Size = new …

Member Avatar for Yorkiebar14
0
300
Member Avatar for nolski13

Hello all, I am relatively new to programming in general - the last formal object oriented programming class I took was my freshman year of college (my jargon may not be accurate). So please, bear with me. If this question should be asked in a different area (such as the …

Member Avatar for LesF
0
229
Member Avatar for Violet_82

Hi guys, quick question. When I work with asp.net controllers (so say a TextBox or a Label) if I want to get what's inside them I will use the Text property: for asp.net listboxes instead I use the Value property. If I instead, say, I ditch completely the asp.net controllers …

Member Avatar for Violet_82
0
176
Member Avatar for Violet_82

Hello all, I am very very new to ASP.NET - just started looking into it a few days ago - and I got a book out to get the basics of APS.NET, Visual studio (which I haven't installed as yet) and C# (the book is ASP.NET 3.5 a beginners guide …

Member Avatar for Violet_82
0
242
Member Avatar for Blueie

Hello I am getting the following error Compiler Error Message: CS1518: Expected class, delegate, enum, interface, or struct with 'string' on this line: public static string GetConnString() and with "MyConnectionString" on this line: return WebConfigurationManager.ConnectionStrings["MyConnectionString"].ConnectionString; I have looked around the Web and I have seen examples of public static String …

Member Avatar for deceptikon
0
372
Member Avatar for bhagvad30

hi, Internet Explorer 10 shows white page on page refresh(F5, Ctrl+r) and then page is shown. this problem arise only in Internet Explorer 10 Browser other browser is working fine(Chrome, Safari, IE8,IE11, Mozila).

Member Avatar for pritaeas
0
59
Member Avatar for Kevin_11

This seems like a silly question but I would like some opinios on how I should tackle this project. I have a client who needs a website with SSL and the ability to make payments, fill in forms, etc for visitors. I have many years of experience in database development, …

Member Avatar for pritaeas
0
158
Member Avatar for Tess James

When data volume is huge on a page, application is really slow in IE 11 compared to IE 8. For e.g. There is this page where a drop down list is bound with 23 K items (This is taking things a bit too far in terms of design, I know!). …

Member Avatar for ExpertMind
0
119
Member Avatar for settu ameer

string to = txtTo.Text; string from = txtEmail.Text; string subject = txtSubject.Text; string body = txtBody.Text; using (MailMessage mm = new MailMessage(txtEmail.Text, txtTo.Text)) { mm.Subject = txtSubject.Text; mm.Body = txtBody.Text; if (fuAttachment.HasFile) { string FileName = Path.GetFileName(fuAttachment.PostedFile.FileName); mm.Attachments.Add(new Attachment(fuAttachment.PostedFile.InputStream, FileName)); } mm.IsBodyHtml = false; SmtpClient smtp = new SmtpClient(); smtp.Host …

Member Avatar for ExpertMind
0
227
Member Avatar for asardeen

I want to display username in the top of all page. Below is my code . protected void Page_Load(object sender, EventArgs e) { } protected void btnLogin_Click(object sender, EventArgs e) { SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["ApplicationServices"].ConnectionString); con.Open(); SqlCommand cmd = new SqlCommand("select * from Userman where Username =@username and Password=@password", …

Member Avatar for ExpertMind
0
184
Member Avatar for Chem_1
Member Avatar for ExpertMind
0
146
Member Avatar for fedaa91

hello , i have this problem i cant figure if it from the gloable resources or in the event itself, so i am using 2 languages in my website's pages, one language which is not the defualt is working very well ,but the english language mode it isnt , so …

Member Avatar for fedaa91
0
237
Member Avatar for ShadyTyrant

I know this is kind of a noob question but I have been given a project where I am not allowed to use scaffolding. I didnt auto generate this code but the form is being auto generated by this code. <div class="row"> @Html.LabelFor(model => model.FirstName, "First Name") @Html.TextBoxFor(model => model.FirstName) …

Member Avatar for PoorRogue
0
118
Member Avatar for vuyiswamb

Good Day All i have an asp.net 4.5 application. i have hosted it on IIS 7.5 in Windows Server 2008. My application has different folders within it and some are for JS and some are for CSS and etc.. and they are inside a directory named "Shared" in my problem …

Member Avatar for JorgeM
0
961
Member Avatar for PerplexedB

I may be very wrong, but in the web world, just installing Bootstrap gives you some basic control over how you controls look. Is there something similar for WPF? I don't seem to find anything, I have a very basic little wpf application with a pageframe, buttons, textblocks and textboxes. …

Member Avatar for PerplexedB
0
264

The End.