13,936 Topics

Member Avatar for
Member Avatar for EMIL MATHEW

Can anyone tell me what is the difference between MSMQ in ASP.NET and MSMQ in WCF?

0
46
Member Avatar for Acrotab

I have this programming code: [CODE] <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:IngBergConnectionString1 %>" InsertCommand="INSERT INTO Table1(namn, development, roll, musik) VALUES (@namn,@development,@roll,@musik)" > <InsertParameters> <asp:Parameter Name="namn" Type="String" /> <asp:Parameter Name="development" Type="String" /> <asp:Parameter Name="roll" Type="String" /> <asp:Parameter Name="musik" Type="String" /> </InsertParameters> </asp:SqlDataSource> [/CODE] But I can't connect up TextBoxes with Parameters. Which …

Member Avatar for Acrotab
0
95
Member Avatar for Sarama2030

i'd lyk to upload files into the database via a dataset to first test some conditions. i've maitained the dataset's state between postbacks to add all the rows b4 updating. however the datarow line[CODE]dim autorow as datarow autorow= viewstate("dataset").tables("datatable").newrow ' the dataset and the datatable are all declared [/CODE] pops …

Member Avatar for Sarama2030
0
78
Member Avatar for aplee

Hi Everyone, Can somebody please help me with this. I have this gridview and I have binded it properly, now I have a button and I want to export the data inside the datagrid to excel. I can do this in asp.net because the code is quite easy for the …

Member Avatar for abelLazm
0
167
Member Avatar for samythehunk

this is a part of my code. can anyone help to write database tables to xml format without usingbuiltin function in .net (i.e xmltextwriter and writexml) private void WriteDataSetToXmlFile(DataSet ds, string fileName) { if (ds != null) { string b = TextBox2.Text; string absoluteFileName = Server.MapPath(fileName); System.IO.FileStream myFileStream = new …

0
47
Member Avatar for azam3404

Hi i am using ASP.NET.I want to create Insertquery using Dataset.I have created this using DataSet1TableAdapters; FirstNameTableAdapter first = new FirstNameTableAdapter(); DataSet1.LoginDataTable de = first.InsertQuery(TextBox1.Text, TextBox2.Text); and error is Error: Cannot implicitly convert type 'int' to 'DataSet1.LoginDataTable I also want to use same iN Dataset and want to create Login. …

0
53
Member Avatar for EMIL MATHEW
0
58
Member Avatar for TheBadger

Hey I setup a datalist with a xmldatasource and pull in an rss feed on my homepage I pull in this data ItemTemplate> <%#XPath("title") %><br /><br /> <%#XPath("description") %><br /><br /> </ItemTemplate> I need to access the info from description in my code, to use it manipulate some things on …

Member Avatar for shakeb@techwave
0
69
Member Avatar for niel1826

Anyone Can Help Me?.. I really don't know how to save all values of grid view in database that are checked in grid view, i hope anyone can help me?.. this is really help to finish my project in school. Thanks.!

Member Avatar for shakeb@techwave
0
513
Member Avatar for Shantanu88d

Hi, I have rowcommand function, in which i m obtaining sr_no as datakey from a link button. now i want to know which row was that. How to get row index this way ?

Member Avatar for shakeb@techwave
0
280
Member Avatar for virendra_sharma

Hi , i am getting syntax error in INSERT INTO statement. getting this error on cmdobj.ExecuteNonQuery(); [CODE]string connectionstring = @"Provider=Microsoft.ACE.OLEDB.12.0; Data Source=D:\website\AddContact.xlsx; Extended Properties=""Excel 8.0;HDR=Yes"";"; OleDbConnection conobj = new OleDbConnection(connectionstring); string Query = "INSERT INTO [Sheet1$](Fname, LName,PhoneNo,Email-ID) values (" + TextBox4.Text + ",'" + TextBox1.Text + "','" + TextBox2.Text + …

Member Avatar for shakeb@techwave
0
287
Member Avatar for manraj82

I have got a grid[Grid1] that build its data when a button[search] is clicked, I managed to Ajaxify it by placing it in an UpdatePanel. Before Ajaxifying Grid 1, the grid used to populate another grid[Grid2] and some other controls[Text and Labels] when a row in Grid 1 was clicked …

0
133
Member Avatar for jlivvers

Hi, apologies if this isn't the correct thread for this question! I'm running some web tests on a couple of sites, simple stuff to gauge average page load times etc. However the internet provided here is through a cache and makes the test fail in most cases because the test …

0
101
Member Avatar for manoj_582033

Hi Fiends I am using file Uploader in my form , & trying to save resumes on my server address, i have a folder (resme) which is on server side & now I want to save resumes on that folder i am using server.mappath nut it's not working ,it's giving …

Member Avatar for Sarama2030
0
213
Member Avatar for rb1234567

How do you [B]click[/B] on a [B]caleneder [/B]and it takes you to another page and how can you [B]click a button [/B]to [B]link[/B] you to a [B]database[/B] on another page where you can [B]add, update [/B]and etc things like bookings. Code please would help and your source of where you …

0
90
Member Avatar for Shantanu88d

Hi, I have a microsoft report. I have set @fr_date and @to_date as parameters in query while designing an xsd for it. Now from frontend I want to pass parameters to this report. How to do it from coding. Because i want to do some initial processing on user input …

0
64
Member Avatar for baldwindc

Hi, I have begun using Visual Studio 2010 in an attempt to create a website. The website uses a Microsoft Access Database to store information and then displays this information on a page according to the city. So for Hendersonville it redirects to myDomain.com/Hendersonville.aspx Well, In development i realized the …

0
81
Member Avatar for chris evans

Hi Guys! Been away for sometime but im back now. Im working on a website on ASP.NET. I have trouble with fitting pages within the browser window i.e i have to scroll horizontally to view all the content on the pages. At first i thought it had to do with …

Member Avatar for sgt_toasty
0
181
Member Avatar for YMCMb

Hello everyone My current scenario is creating a mark sheet for students on different module. Module 1 marks are as follows Grade A = 70 marks or over Grade B = 55-69 Grade C = 40 -54 Grade F = 0-39 Module 2 marks are as follows Grade A = …

0
75
Member Avatar for Der_sed

Im returning to Visual Studio after 8-9 years. The world has changed a lot and the first shock Ive gotten is that... XAML is in ..whether its WPF or Silverlight! Then theres WCF, XNA, and what not. Anyways heres my question: Is ADO .Net still relevant or has it been …

0
39
Member Avatar for G_Waddell

Hi I'm writing a site that allows users to download documents securely stored on the network off of the web server. I'm using a com object on the server that we've been using here for ages that fetches the file from the network in a binary stream thus preventing user …

Member Avatar for G_Waddell
0
1K
Member Avatar for adobe71

How can I upload image by checking pixel(ie 100x100) and size(ie 50kb)in MS Access and retrieve from database to show in image control using C#.

Member Avatar for sgt_toasty
0
87
Member Avatar for EMIL MATHEW

I written the code for deleting temp file from the system when we logout the application This code work in localhost But when i deployed the application on server it is giving the error [B][COLOR="Red"]Access Denied C:/Window/Temp[/COLOR][/B] I given full rights to this directory The code is below [CODE] string …

Member Avatar for crishlay
0
147
Member Avatar for mshauny

Hi I'm not an asp .net developer although I have done web development with php and mysql, I'm more of a software developer for desktop and mobile devices. So this is my first big project with ASP .NET. I have a question with the ASPNETDB database, understand that the database …

Member Avatar for crishlay
0
183
Member Avatar for moonL!ght

hi i want to show my table in afrid view reading from database but i couldint i tried many times can any one help me this is my code: [CODE] <%@ Page Language="JScript" Debug="true" %> <%@ Import Namespace="System" %> <%@ Import Namespace="System.Data" %> <%@ Import Namespace="System.Data.OleDb" %> <%@ Import Namespace="System.Data.sqlClient" …

Member Avatar for crishlay
0
161
Member Avatar for garrypeace

Hi, I'm new to ASP.NET. I began learning as I had to make a website for a college project using a language I didn't already know (I know PHP pretty well so I'm not a total noob :P). Basically what I'm trying to do is get a list of products, …

Member Avatar for aspproject
0
146
Member Avatar for Bline

I am an retired untrained volunteer who assist a couple nonprofits with their web sites. I could really use some help on a problem I have been attempting to resolve. I am developing an application for one of the sites that generates assignment cards for Football Game Officials from information …

Member Avatar for Bline
0
115
Member Avatar for sourabhacooli

Hi I need you help that I want save my image file in database in bytes format and then convert this bytes into image in asp.net. Please give your positive review. Thank Sourabh

Member Avatar for G_Waddell
0
44
Member Avatar for sourabhacooli

Hi Please help me for solve the problem I need to Export all my Datagrid Data into CSV file Thank You Sourabh

Member Avatar for G_Waddell
0
71
Member Avatar for daredevil14

I can't even compile a single asp.net code, for example: [CODE]<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>[/CODE] And even the regular response.write command... I've searched the internet for such a problem, most of the answers were recommending to select the version of asp.net in the IIS settings and re-registering asp.net, …

Member Avatar for G_Waddell
0
149
Member Avatar for prateekpk5

Hi. I have a button to which i want to pass a commandargument(s) which are selected values of two different dropdowns. please suggest me how can i pass the values???

Member Avatar for G_Waddell
0
62
Member Avatar for srvstv.prnc

can anyone please tell me how to create simple html editor with bold,code tags. And how to add html tag content in file using streamwriter at runtime. and also tell how to use <code>tag in asp.net 4.0 its producing error

Member Avatar for G_Waddell
-1
138
Member Avatar for aplee

Hello everyone! I have this problem with the system passed to me by the previous developer. The page is scrollable vertically. Now to be able to click the button, you have to scroll down. The problem is, whenever I click the calendar, the scroll goes back to the top page …

Member Avatar for G_Waddell
0
91
Member Avatar for br_astronut

HELP! I am a medium duty VB.Net developer and want to start developing web applications and converting some of my VB apps to web apps. I know the basics and have put together a working ASP.Net application with no problem. I have the mechanics working fine. I just can't seem …

Member Avatar for matthewskyle
0
274
Member Avatar for umair41

explain th datatable 1.0 1 1.00 / 5, 1 vote C# tablename User Id int Email varchar(500) Password varchar(500) Name varchar(500) DATA IN TABLE IS Id Email Password Name 1 [email]ali@yahoo.com[/email] 1234 ali 2 [email]usman@yahoo.com[/email] 1234 usman i ask you about simply datable working Label1.text=datatable.Rows[0]["Name"].Tostring(); how it wnat to know …

Member Avatar for pankeel
0
67
Member Avatar for dejanc

Hello, I have access database which have hyperlink column, and values as "/yes.bmp", "/no.bmp". Then in asp.net have a GridView with ImageField which in browser will show Yes image, or No image. ImageField Properties >> DataImageUrlFormatString: ~/images/{0}.jpg. My goal is to get in vb.net code a value from GridView's imagefield. …

Member Avatar for dejanc
0
398
Member Avatar for kimlong008

Help me read RSS of YetAnotherForum ! I can make code read RSS : [url]http://vnexpress.net/rss/gl/[/url][B][COLOR="Red"]the-gioi.rss[/COLOR][/B] But I can't read RSS with ID of Yaf Forum : [url]http://khotien.vn/diendan/default.aspx?[/url][B][COLOR="red"]g=rsstopic&pg=Topics&f=24[/COLOR][/B]

Member Avatar for kimlong008
0
57
Member Avatar for ImKryz

Hello, I am interested in learning Visual Basic 2010 from scratch. I have no programming experience at all and I am looking for a good book that helps me grasp the concepts of programming as well as learn Visual Basic 2010 and the .NET framework. I would like a book …

Member Avatar for Luc001
0
116
Member Avatar for dandixon

Im a noob to asp.net, im a web designer with html, css and basic php experience and want to learn more about asp.net/vb. Does anyone have any time to explain to me a good place to start, books, websites etc or the best place to start, do i need to …

Member Avatar for koki55
0
136
Member Avatar for pavankumarr

Hi, I want sample code to validate the dates that is to be in the format YYYY-MM-DD(2011-04-21). I had created two Textboxes to enter date and one Button Control. The date format to be entered in the Textbox should be exactly like YYYY-MM-DD(2011-04-21). If user enters any other format like …

Member Avatar for pavankumarr
0
2K
Member Avatar for virendra_sharma

Hi , i need code , which is used for sorting in c# i.e. .sort method code., somewhere i read that they use quick sort algorithm , can anyone plz help me by giving the code. Thanks in Advance

Member Avatar for virendra_sharma
0
176
Member Avatar for pankeel
Member Avatar for jackbaker
0
201
Member Avatar for adobe71
Member Avatar for pankeel
0
74
Member Avatar for kimmi_baby

Hi, I'm having a problem with an ASP.net website and CSS. I've pasted my CSS code from a previous website (HTML and CSS) to have a look at it. I've copied the basic divs etc into the masterpage. But I'm finding that the layout isn't centered. The layout would normally …

Member Avatar for jbisono
0
287
Member Avatar for BradenMurphy

Hi, Is possible to load a .NET v3.5 assembly into a .NET v2.0 application? For example my application (written in delphi.NET) only supports .NET v2.0 and I would like to know can I load .NET assemblies compiled in .NET3.5 or greater? Regards, Braden Murphy

Member Avatar for kvprajapati
0
58
Member Avatar for judithSampathwa

hi there, i am using a code to back (downloaded) up a database in a server and when i run the application it gives me an error saying operating system error 3 [CODE=C#] //Use this line if you have already created a bakup file. File.Delete(DBpath + "\\backup.bak"); this.Cursor = Cursors.WaitCursor; …

Member Avatar for BitBlt
0
629
Member Avatar for shakeb@techwave

I am a new software developer.I am developing a website which required to maintain log-in and log-out time of the user.I can maintain my database when user click on Log-out button but i can not track the user when he click on Browser Close X(or in Tab Close)event.I also want …

Member Avatar for shakeb@techwave
0
161
Member Avatar for CrazyProgrammer

Hi, Could someone tell me how to bind a view to viewmodel, I cant seem to get it to work, could anybody give me a template. I have usercontrol with a button and a textbox, and bind it to the corresponding functions in a viewmodel, the view model is in …

Member Avatar for abelLazm
0
190
Member Avatar for somemightsay

Hi, I'm attempting to use a Loop which uses an ICount of 1-9 in order to insert data into a database. The code is used for a website and when this page is loaded there are already values assigned to intProductIDSelected1, intProductIDSelected2 etc so I am attempting to use ICount …

Member Avatar for Mitja Bonca
0
139
Member Avatar for judithSampathwa

hi there, i have a question in connecting to the server. when i log in to the server and connect to the ms sql server i can connect to the databases. but when i login to another computer and try to login to the MS SQL server management studio i …

Member Avatar for judithSampathwa
0
339

The End.