13,153 Topics

Member Avatar for
Member Avatar for yookify

Hai... I'm Doing my project in asp .net(vb .net coding) If anybody guide me means it would be great pleasure for me... I want to display names in the list box So i used the coding: [code] If Not Page.IsPostBack Then Try myda = New SqlDataAdapter("Select name from agent", connection) …

Member Avatar for Mohtshm
0
122
Member Avatar for ProjectEchelon

Hello All... This is my first post so please be gentle with me and I will try to explain the issue I've been fighting with for 3 days. I am trying to update a gridview element from a different thread. This update task is part of an outer foreach loop …

Member Avatar for ProjectEchelon
0
782
Member Avatar for gudisiva
Member Avatar for jellybeannn

I'm creating a cash flow calculator, start and end date is entered, and then dates according to months in between are displayed. If the month is Dec or Jan t1 should change accordingly, [code] if (validation.Month == 12) t1 = t1 - 14; if (validation.Month == 01) t1 = t1 …

0
53
Member Avatar for joseph2010

Can I write IL programs run directly? exam for the IL program what is business process model in UML?

Member Avatar for kvprajapati
0
53
Member Avatar for fiaolle

Hi I'm having trouble to access a Parent's property in User Control. I don't know how to access the parent. I saw the example below and tried it: [CODE]CType(Me.Page, Search).Prop = VALUE[/CODE] and the Parent page is called Search.aspx [CODE]Partial Class Search[/CODE] But then I get en error Type 'Search' …

Member Avatar for 4advanced
1
2K
Member Avatar for joseph2010
Member Avatar for joseph2010
0
145
Member Avatar for rohitmanhas_12

hi, i had to make a asp.net form in which i had three columns ... 1:- for Date of registeration 2:- Date of birth 3:- Time of Birth.... and using c# insert these values into microsoft SQl database... cud anyone give me the code,to do it.....

Member Avatar for kvprajapati
0
198
Member Avatar for jamey8420

I had taken over some code that was originally created .net 1.1 We need to update and bring into .net 2.0, so I opened the solution in VS2008 and went through the converter wizard. Now, when I am trying to build the solution, I am seeing the below error for …

Member Avatar for kvprajapati
0
261
Member Avatar for Ycefire

Hello, I have some troubles with mine code which selects data from database and show them in the GridView. ASPX page: 1grid view, 1 button and 2 text boxes code behind: [CODE] Protected Sub cmdVyhledat_Click() Handles cmdVyhledat.Click SqlDataSource1.DataBind() GridView1.DataBind() End Sub Protected Sub gridview_refresh() Handles SqlDataSource1.DataBinding If (txtCisloReklamace.Text <> "") …

Member Avatar for Mohtshm
0
218
Member Avatar for yookify

Hai.... Im new to .net ,I need help in doing my project.... If i Give the lastname in textbox then the items in lastname should be displayed in the anthor textbox [B]For ex : Thomus,123,aaa Thomus,345,bbb H_alert,456,ccc[/B] If i enter thomus it should show all thomus from my database but …

Member Avatar for yookify
0
87
Member Avatar for yookify

Im Yooki ..... Im doing my project in asp .net with vb coding... Now i want to compare Two Strings in textbox.... For ex: Thomus .CA and Thomus .CC....Here i have to compare whether the two members r same r not... Im so new to this site and also new …

Member Avatar for yookify
0
97
Member Avatar for melphic

Hi all, in my app a user places an order and should be assigned a new session id. Then they should be able to place a new order using this session id so as not to ovewrite their previous orders data. Unfortunately the only way I can get a new …

Member Avatar for melphic
0
104
Member Avatar for msman88

I have an error: -------------------------------------- [CODE]Server Error in '/' Application. Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that <machineKey> configuration specifies the same validationKey and validation algorithm. AutoGenerate cannot be used in a cluster. Description: An unhandled exception occurred during …

Member Avatar for kvprajapati
0
80
Member Avatar for msman88

In our application, the user registeration taking 5 pages the user is moving through and filling data. Suppose when user is reached to the last page(no. 5), the user can returns back to the first no. 1 page. For that, we want to disable user coming back to that first …

Member Avatar for kvprajapati
0
94
Member Avatar for murugavel84
Member Avatar for Sparky89
0
88
Member Avatar for koki55

Can someone tell me is there any difference between code in C# from .NET1 and .NET4 so can i use examples from visual studio 6 for istance into visual studio 2010?

Member Avatar for powerbox
0
69
Member Avatar for davidcrossan

hi there i am building a one page website that i need query data from an access database (visual studio 2008 c# xml). I need to do a sql query displaying customers with possible bookings if any. I have been able to display all customers details but i am finding …

Member Avatar for Mohtshm
0
155
Member Avatar for sri_sreeraj

Hi, I am a dot net beginner. I have learned programming in c# for website developing. Now I would like to learn vb.net . So I am trying to convert one of my previous work from c# to vb. But now I am facing a problem while converting to vb. …

Member Avatar for kvprajapati
0
179
Member Avatar for brenn13

hi.. i'm encountering a bug regarding sending emails.. when the smtp server do not have user autentication, the sending of email is really fine.. but when the smtp requires username and password, no email is being sent.. i believe it is related to web.config.. i have searched a lot of …

Member Avatar for kvprajapati
0
147
Member Avatar for TimWerk

hi all, i would like to get the selected row from the datagrid and get the row's data to transfer it to textboxes.. how can i do this?

Member Avatar for Mohtshm
0
97
Member Avatar for jellybeannn

Hallo everyone. I want to set the day to the validDay. e.g if valid day is 25 then the day must be 25 on DateTime. [CODE]string validDay_str = reader["validation"].ToString(); int validDay = Int32.Parse(validDay_str); string start_str = reader["start"].ToString(); DateTime start = DateTime.Parse(start_str); start.Day = validDay;[/CODE] with this code I get an …

Member Avatar for jellybeannn
0
122
Member Avatar for ineale

I have a window1.xaml file that has a canvas created in xaml. I have used xaml to define the canvas so that i can later add a map from Expression Design to it. I have a function in an outside class file, PathNode.cs, that should draw an ellipse to the …

Member Avatar for kvprajapati
0
101
Member Avatar for nccsbim071

i am sending email to the users using smtp client and MailMessage class. i have been adding the addresses of multiple receivers in the to property of the object of MailMessage class. the problem is that the receiver can see the email addresses of other receipents. is there any way …

Member Avatar for nccsbim071
0
107
Member Avatar for syedfaisalhabib

I get this error whereas I have checked all the code. Can someone points out where I am wrong? -------------------------------------- Line 29: If e.CommandName = "New" Then Line 30: Code.Direction = Data.ParameterDirection.Input Line 31: Code.Value = (DirectCast(GridView1.Controls(0).Controls(0).FindControl("txtCode"), TextBox)).Text Line 32: Line 33: Name.Direction = Data.ParameterDirection.Input -----------------------------------

Member Avatar for nil
-1
85
Member Avatar for sebastian3

Hi buddies, Can anybody help in RBS WorldPay Payment Gateway Integration in Asp.NET. Any Code/DLL/component can be great help. I really can't make up their Documentation. Thanks in advance.

0
58
Member Avatar for invictuspravin

Hello There, Access denied for user 'xxxx.d'@'xxxxx' (using password: YES) Actually in my application i am executing stored procedure on page load of index page ... i have hosted application on webserver and i am using shared mysql database server when i triese to run the page it shows the …

Member Avatar for invictuspravin
0
153
Member Avatar for php_noob

is there a script or maybe you have resources for a ASP.NET MAILER like PHPMAILER. Thanks!

0
91
Member Avatar for Scoobydog

Could someone please help: I have a page with a nested Gridview on it ( Parent/Child ) relationship, all withing an UpdatePanel. The sub-grid has a CommandField Button that the users can click on to view the detail record in it's entirety. The SubGrid is loaded from the Rowdatabound of …

0
45
Member Avatar for user1980

hello, I am trying to enable validators using javascript and they get enabled as expected but when I am trying to disable them they give an error and then get disabled. I think I am missing a logic on how to disable them. My code is supposed to validate two …

0
79
Member Avatar for carrzkiss

Hello All; It seems that I have just run into a small issue that I am hoping can get resolved pretty quickly, as it is the only thing that is holding me back from completely this part of my task. In an ASHX file, I am needing to read a …

Member Avatar for carrzkiss
0
159
Member Avatar for Omar123

Hello, I wrote all the code and everything works good on the project (web site using Visual studio 2008) that I'm working on, and now the only thing that I have to do is to have at least a simple layout of the webpage I'm doing. I don't know css/html …

Member Avatar for Sodabread
0
98
Member Avatar for gdp_87

Hi i am new to asp.net and have followed a tutorial in creating a shopping cart and thats working fine. I would like to modify it to produce the products from my database rather than get static products from a class which it does now. Sorry for the masses of …

Member Avatar for gdp_87
0
434
Member Avatar for mornej

Hi I am a beginner programmer and I would like to know how I can create a new page(.aspx) usong a button. So What I am actually asking is: I want to have a page that you can enter your information in. eg name Then if you press submit it …

Member Avatar for mornej
0
100
Member Avatar for Naveed88

Hi, we have a site uploaded as [url]http://mystore.com[/url] it is accessible through [url]http://[B]www[/url].[/B]mystore.com also google is currently indexing pages such as [url]http://mystore.com/searchproducts.aspx[/url] as different from [url]http://[B]www[/url].[/B]mystore.com/searchproducts.aspx when they are actually the same page. We would like to do some form of redirection so as to forward all requests made to …

0
33
Member Avatar for RickyG

Hi guys I am trying to create a code that allows me to take either first name or last name or both and display accordingly on the gridview.. Much help is appreciated viewrecords.aspx [code] <asp:AccessDataSource ID="AccessDataSource1" runat="server" DataFile="~/App_Data/JABILMCALLEN.mdb" SelectCommand="SELECT Employees.Name, TrainingDocuments.ReferenceDocument, TrainingDocuments.Description, Certifications.[Started Training], Certifications.[Ended Training], Certifications.TrainedBy, Certifications.Approved FROM TrainingDocuments …

Member Avatar for RickyG
0
130
Member Avatar for gptArun

Hi there, Any idea about ---> how to change "Response to this Survey" in sharepoint ? thanks in advance,

0
85
Member Avatar for scorpio222

hi, i have an aspx page, Default.aspx, which runs when a web service is called. the output of the web service is something like this: http:\\xx.xx.xxx.xxx\FileDownload\Default.aspx?download=2.csv&type=csv This link above will download the csv file present on the server. The code for the default.aspx is given below. I want to know …

Member Avatar for murugavel84
0
181
Member Avatar for Vpurshottam

hi, i want report viewer with adodb connection + vb.net please can any one help on this thaxs in advance

Member Avatar for kvprajapati
0
38
Member Avatar for BC3

I am using Visual Basic 2008. I am trying to create a web page. I can't seem to get the labels, controls, etc. to let me place them where I want them on the page. I found several articles that suggest to make sure document shows in property window then …

Member Avatar for mitulmodi.rcc
0
85
Member Avatar for samkutty
Member Avatar for sniigg

Hi, I have [code] SessionData sdc = new SessionData(); [/code] And all the properties of sdc are stored in a table in sql server. I want to retrieve the properties of the sdc dynamically. And i know [code] sdc. reader1["xmlname"]= [/code] is a wrong way of doing it. So can …

Member Avatar for sniigg
0
113
Member Avatar for shanprab
Member Avatar for mitulmodi.rcc
0
101
Member Avatar for gptArun

hi all, i m new to sharepoint pls help - Any idea about the Sharepoint Databse structure ? I am using SqlServer 2005 with .NET, Sharepoint How to access my database? where is connection file in sharepoint ?

Member Avatar for gptArun
0
154
Member Avatar for jamshed ahmed

JAVA SCRIPT CODE [CODE] function NumbrOnly() { if(event.KeyCode==45 || event.KeyCode==46 || event.KeyCode==48 || event.KeyCode==49 || event.KeyCode==50 || event.KeyCode==51 || event.KeyCode==52 || event.KeyCode==53 || event.KeyCode==54 || event.KeyCode==55 || event.KeyCode==56 || event.KeyCode==57) { event.retunValue=false; } <asp:TextBox ID="TextBox3" onkeypress="NumberOnly('TextBox3')" runat="server"></asp:TextBox> [/CODE] WHAT IAM MISSIGN AND WHEN I WRITE event. then after 'dot' it …

Member Avatar for kvprajapati
0
164
Member Avatar for mIssy_ricco

Hi all. I've been trying to do a sliding panel. all that i can find was collpasible panel. But it moves with my background as well. I didn't want my background to move. Can anyone help me? What I did was. [CODE] <ajaxToolkit:CollapsiblePanelExtender ID="CollapsiblePanelExtender1" runat="server" CollapseControlID="LBCollapse" ExpandControlID="LBExpand" CollapsedSize="0" CollapsedText="Expand it …

0
61
Member Avatar for steve48

I have an integer variable Purchaser1PersonKey that I would like to pass as a session variable to another page. I have made Purchaser1PersonKey the CommandArgument of my LinkButton. I must be doing something wrong because when I breakpoint on response. redirect the session variable is empty. Any help will be …

Member Avatar for kvprajapati
0
53
Member Avatar for w_bryan
Member Avatar for nirveshverma

hi I am facing problem in connection of sql server in asp.net pages Actually there is error when i importing namespace [B]System.Data.Sqlclient[/B] [B] Error is:[/B] The type or namespace name 'sqlclient' does not exist in the namespace 'System.Data' (are you missing an assembly reference?) now i don't idea that what …

Member Avatar for nirveshverma
0
233
Member Avatar for Ycefire

Hello, Im having some troubles with strings connecting. [CODE] retezec = "" & Session("jmeno") & ")" & " AND (table1.application_ID = " & txtCisloReklamace.Text Dim ret As String = "SELECT table.data, table.XX, table2.name FROM table INNER JOIN table2 ON table.kod_vyrobku = table2.kod_vyrobku WHERE (table1.some_value= " & retezec & ")"[/CODE] When …

Member Avatar for Ycefire
0
55

The End.