12,085 Topics

Member Avatar for
Member Avatar for Mike Askew

So I am currently working in ASP.Net and a bit stuck. I obtain the full html that I wish to render into the tab from a WSDL request and then need to find a way to load a new tab in the browser and display that information. I have currently …

Member Avatar for Mike Askew
0
151
Member Avatar for Dave_6

After publishing my project on local IIS it worked fine but on the web its keep poping the error [ArgumentException: Invalid value for key 'attachdbfilename'.] many forum i search said its connection string from my webconfig file but i went the extra mile by removing the whole connection string and …

Member Avatar for hericles
0
541
Member Avatar for Blueie

Hello I am trying to make an alteration to the CSS behind the site.master file. I have the following in my site.master code: <div class="navbar navbar-inverse navbar-fixed-top"> <div class="container"> <div class="navbar-header"> ........ </div> </div> </div> This refers to the fixed bar along the top of my page as in the …

Member Avatar for pritaeas
0
988
Member Avatar for A.Muqeetkhan

okay guys here is a thing i am new in asp.net and just love toying with technology and trying to learn asp.net through creating persnal projects. i am trying to create website that will basically take users info and users information and then store that in the data base. once …

Member Avatar for A.Muqeetkhan
0
167
Member Avatar for game4tress

I'm trying to create an ASP .NET MVC WebSite that allows the user to enter the website without providing any additional information or by specifying an id or a name. Is this possible? How? I've tried the following method but it's not working public void Index() { //... ProcessClient(); } …

Member Avatar for wazz
0
290
Member Avatar for morfious90

This is what i want 2 form in my navigation bar. First is for Search Box second is for username and password.login button problem is if i put search box and login in same form then it gives weird look and formation error. Second Now I want to use buttons …

Member Avatar for wazz
0
326
Member Avatar for codewar

Hello, Working on this program as to where I need to cultivate this Message to retrieve both the First and Last Name. Working with Cookies with ASP.NET. A simple log in form. Here is the code to just retrieving the First name that the user inputted; Yes, it does work …

Member Avatar for JorgeM
0
290
Member Avatar for kiail

I have a site that I can't seem to figure out. I'm extremely new to asp.net/vb etc...I do C# forms but nothing with web dev. Anyway, my problem is my page declaration shows up on a live website and none of the controls show up(buttons, etc). It works great in …

Member Avatar for JorgeM
0
137
Member Avatar for Blueie

Hello I have a 'thank you for registering' page (success.aspx) for new users who have completed a 'new user registration form' and wish to use some CSS to make it more attractive. I intend to use these fonts, if possible, as follows: CSS <style type="test/css media="screen, projection"> @font-face { font-family: …

Member Avatar for Blueie
0
126
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
677
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
30
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
844
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
167
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
364
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
121
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
111
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
444
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
146
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
46
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
297
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
228
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
158
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
235
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
277
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
58
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
155
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
117
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
225

The End.