13,936 Topics

Member Avatar for
Member Avatar for omi9688
Member Avatar for Roses89

Ok guys, im here with a problem The thing is that ive created a website for a doctors hospital.Now the admin staff are allowed to create new patient and add new staff to the database. I have two databases right now.The aspnet membership data base and another one that has …

Member Avatar for kvprajapati
0
142
Member Avatar for girishankar

Hi, I recently joined a web designing. I've been given two dummy project already to work on but i don've idea from where i've to start the project. can anyone pls help me wit this problem. Project is developed using asp.net c# .

Member Avatar for kvprajapati
0
56
Member Avatar for Roses89

Hey guys, Im really new at vb.net and i have a huge project on it.Somehow, ive managed to complete 90% of it but im stuck at the last 10%.This is a system basically set up for GPs.Medical Centre.The system has 3 users, patient doctor and admin. The admin are allowed …

Member Avatar for jamal_jarrar
0
139
Member Avatar for lgriess

I have a very weird problem with my TreeView OnSelectedNodeChanged event. I have dynamically populated the whole tree via sql and one table. Everything was working correctly until I tried to add rdls to the mix, My treeview populates correctly but when I try to add two reports to my …

0
95
Member Avatar for Roses89

Hey guys, Im not very good at programming but ive a huge project and i needed help on something. The basic thing is that im making a project for a doctors hospital Now im working on the prescrption and i wanted the doctor to be able to select the patient …

Member Avatar for Roses89
0
112
Member Avatar for Arun.Emm

Hi , Basically I want to display a popup box only at a specific time in asp.net application. so i'm using the following code.. aspx page : [code] <head runat="server"> <title>Untitled Page</title> <script type="text/javascript"> function timedMsg() { var t=setTimeout("alert('good morning!')",6000); } </script> </head> [/code] C# code : [code] protected void …

Member Avatar for Tarang
0
860
Member Avatar for vinayak.v

hi... everybody... i've designed one crystal report to display the total number in indian currency format which works good... following is my code. [code] numbervar RmVal:=0; numbervar Amt:=0; numbervar pAmt:=0; stringvar InWords :=" "; numbervar totalAmt; totalAmt:=Sum ({employee.salary}); Amt := totalAmt; if Amt > 10000000 then RmVal := truncate(Amt/10000000); if …

0
93
Member Avatar for ranu jain

Suggest me some lonk for making payment gate way and to set session and authenticate session in my site. i m working in asp.net.

Member Avatar for ranu jain
0
301
Member Avatar for sumisudhakar

I am currently working in an ASP.Net application where i need to implement ASP.Net Membership and Roles. I have used Login controls in my pages. Also I am using a menu in the master page, which is getting data bindings from database. For data bindings I am using XMLDatasource and …

0
156
Member Avatar for jackparsana

Hi, Please me to do this. I have one Webapplication. its build on vs 2010 and back-end is MsSql server 2008 and create setup for installing in another Standalone PC. The Problem is I can't run Application without installing Vs? is there any solution? can I run setup without install …

Member Avatar for jackparsana
0
213
Member Avatar for lanitooot

i dont know how to make my log in system to have a multiple users with different access levels. for example when the admin logs in it can access all the features of the system and if the ordinary users logs in some of the features are disabled. my log …

Member Avatar for lolafuertes
0
1K
Member Avatar for Jesi523

I need help and I am not sure if this is even the right forum. I am new to n-tier programming. So I have developed a DAL using datasets, a BLL that is probably not very robust because I really do not know 100% what I am doing, and I …

Member Avatar for Jesi523
0
233
Member Avatar for router.exe

I'm trying to display a progress bar or animation for an update panel that takes a while to load. The update panel is housing a chart that uses multiple chart areas, and the code behind is building these chart areas during the update. I'm not sure what I'm missing using …

Member Avatar for router.exe
0
2K
Member Avatar for anish.anick

Hi All, I am using Three tier application in my project (having Presentation, Business and Datalayer). I want to know what kind of Design pattern is Three tier approach? Thanks

0
54
Member Avatar for MichaelWClark

I have a stored procedure that I am using through LINQ to SQL as a data source for a gridview. Rather than editing my stored procedure is there a way to use Linq to search the result set? [code] Dim DC As New DistributionDataContext GridView1.DataSource = (DC.usp_GetInvestorData(GridView1.PageIndex, GridView1.PageSize, "InvestorName", Session("sort"))) …

0
91
Member Avatar for queryme

Hi Please let me know how to scroll text inside a textbox or lable. i am using .net framework2.0, i need it in Asp.net c#.

Member Avatar for MichaelWClark
0
93
Member Avatar for tashiDuks

Hi Everyone, Recently my organization (where m working) has decided to host web locally rather then hosting in ISP. We have purchased a new server which will be used only for web. My Company has got new public IP for web from ISP i.e. 119.2.116.190. I am trying to configure …

Member Avatar for CimmerianX
0
206
Member Avatar for piranha3d

Hello everyone! I wanna know If how will I get the values from the selected checkboxes of my datagridview, the values of the textboxes on the right and how will i put the selected values in a Session? thanks in advance! heres the pic of my project. [url]http://i53.tinypic.com/2cz7z2o.jpg[/url]

Member Avatar for Sals
0
370
Member Avatar for Lazarevski

[code] var q = from nar in db.Narackis where nar.datum == TextBox1.Text select new { nar.ID, nar.sifra, nar.kolicina, nar.naziv }; [/code] Error Message: Error 4 Operator '==' cannot be applied to operands of type 'method group' and 'string' C:\Users\Dragan\Desktop\MegaKameriWebApp\prodavnici\Naracka.aspx.cs 20 47 C:\...\MegaKameriWebApp\ I've tried both nar.datum.toshortdatestring and nar.datum.tolongdatestring and neither …

Member Avatar for kvprajapati
0
67
Member Avatar for kiran@kumar

hi friends iam kiran i have a doubt in javascript. In asp.net we have a flushing concept.it works fine. But i want that same flushing concept in javascript. Exact Requirement: From my database i got 1000 records to javascript function. then here i am open one js window and iam …

Member Avatar for kvprajapati
0
68
Member Avatar for DongleDaniel

Morning/Afternoon/Evening... Been up now for about 7 hours trying to figure this out and been googling too much... Trying to basically Connect to my active directory server on the FYP.Com Domain ip address 10.10.10.1 and pull of a lise of uses within the Users OU. Tried playing around with the …

Member Avatar for kvprajapati
0
129
Member Avatar for canterorist

hi! In php we use this [CODE]<a href="hello.php?a=1&b=2">hello</a>[/CODE] so that when we click, the $_get will catch the value of a and b. If i used asp.net what is the code to link for it?. I need your help, I'm new in using asp.net.

Member Avatar for canterorist
0
176
Member Avatar for sujimon

Hi, The website that I have been working on for sometime is about to be deployed now. However, after deployment the reports are not opening in one of the two machines that I have deployed. All other pages seem to be working fine except reports not opening with the error …

Member Avatar for sujimon
0
829
Member Avatar for jainsurbhi

Hello all, I’m a bit weird because just 2 days ago I had an interview for a .NET developer post .They promised to call me last day but they didn’t so I just want to confirm few answers given by my side. Please review them and let me hear your …

0
62
Member Avatar for devloper

hello friends if anyone know that is it possible to more than one crystalreports call on same form in asp.net?then how?

Member Avatar for kvprajapati
0
56
Member Avatar for itslucky

Dear Friends, I am developing such a website where i have uploaded the ringtones for mobile phones, and i need to know that how can i play the ringtone in the [B]Asp .net C# pag[/B]e. before download user can [B]listen[/B] the ringtone and same action can done with Videos. Please …

Member Avatar for kvprajapati
0
195
Member Avatar for new SE

Hi all.. i'm working with asp.net c#.. i want to make a chart that can retrieve the data from the database.. i found one website that tell the way to make it but i dont understand the query used.. this the the link [URL="http://www.dotnetcurry.com/ShowArticle.aspx?ID=238"]http://www.dotnetcurry.com/ShowArticle.aspx?ID=238[/URL] and the query is [CODE]SELECT CategoryName, …

Member Avatar for router.exe
0
113
Member Avatar for usg

Hi, I am doing a web based chattebot system and my problems are these. I need to get a particular user question and check for some specific keywords in it(for example take the nouns) and find for synonyms and well as do the spell check? Therefore What is the best …

Member Avatar for adeela83
0
186
Member Avatar for nilu_r

How to integrate asp.net application using iDEAL lite payment? Can anyone help me?

0
48
Member Avatar for devloper

hello friends any one help 4 this... m new in asp.net and in asp.net, when i add New item (report file .rpt) i am not getting its .cs file and i am not able to create instance of it and i get an error on the first time button(report show)'s …

0
58
Member Avatar for eng.amira

Hello...... i want to select from the drop down list ID then all information connecting to the ID will appear in the report , i wrote this SQL statement but only information related to the first ID appear each time when i select different ID from the drop down list …

0
42
Member Avatar for Lazarevski

i have two tabels in my database. The first is called 'Products'(consisting of the product's id and the name of the product) and the second one is called 'Orders'. Is it possible, and if yes please gimme the name of that property so I can google it up, when a …

Member Avatar for jackparsana
-1
67
Member Avatar for harika.k

Hi, I am coding the loginpage, i want know how to code 1.) To check whether the User entered username,pwd matches with any of the rows of database data, if it is so it should navigate to next page like inbox.aspx. As i am new to Asp.net, please help me …

Member Avatar for vijaykrishnabor
0
2K
Member Avatar for ptemedia

Hi, I have an objectdatasource as shown: [CODE] <asp:ObjectDataSource ID="ObjectDataSource2" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="GetProducts" TypeName="ProductsDALTableAdapters.ProductsDTTableAdapter" MaximumRowsParameterName=""> <SelectParameters> <asp:QueryStringParameter DefaultValue="" Name="Param2" QueryStringField="ID" Type="Int32" /> <asp:Parameter DefaultValue="???" Name="Param1" Type="String" /> </SelectParameters> </asp:ObjectDataSource> [/CODE] This returns products that include (in a particular field) what is placed instead of ??? with the exception of the …

0
105
Member Avatar for prem005

This is in class file Imports Microsoft.VisualBasic Imports System.IO Imports System.Collections.Generic Public Class FileSrch '' File Search Options Public Enum FileSearchOptions YearFirst MonthFirst DateinExtension NormalFiles End Enum Public Shared Function GetSearchcriteria(ByVal DatetoSearchwith As Date, ByVal Filename As String, ByVal FileExtension As String, ByVal SearchOptions As FileSearchOptions) Select Case SearchOptions Case …

0
87
Member Avatar for ranu jain

[CODE]Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click Dim conn As New SqlConnection Dim cmd As SqlCommand Dim dp As New SqlDataAdapter Dim ds As New DataSet Dim i As Integer Dim str As String = "UPDATE aspnet_Membership SET aspnet_Membership.Email='" & Email.Text & "' WHERE UserId='" …

Member Avatar for sujimon
0
102
Member Avatar for sooriamca

Hai i need a coding for Login and its validation in asp.net using vb.net.. Am currently using SQL Server Express Edition 2005 software as my backend...

Member Avatar for sujimon
0
166
Member Avatar for snehalj

[CODE]<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" Title="Untitled Page" %> <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server"> &nbsp; &nbsp; &nbsp;<a href ="default.aspx">Back </a> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; …

Member Avatar for sujimon
0
168
Member Avatar for ranu jain

I am using ASPNETDB.mdf database (default database) in my application . to create a user i am using CreateUerWizard .i want to costomize and want to add new field-"Contact No" in it . how can i store contact no in database? i m working in vb.net with visual stdio 2008 …

Member Avatar for ranu jain
0
71
Member Avatar for k_ramprasad87

Hi see this for update progess bar. Script [code] <script type="text/javascript"> Sys.WebForms.PageRequestManager.getInstance().add_endRequest(endRequest); Sys.WebForms.PageRequestManager.getInstance().add_beginRequest(initRequest); function initRequest(sender, args) { var pop = $find("test"); pop.show(); } function endRequest(sender, args) { var pop = $find("test"); pop.hide(); } </<script> <ajaxtoolkit:ModalPopupExtender ID="mdlPopup" BehaviorID="test" runat="server" TargetControlID="UpdateProgress1" PopupControlID="UpdateProgress1" BackgroundCssClass="popUpStyle1" DropShadow="true" /> <asp:UpdateProgress ID="UpdateProgress1" runat="server" AssociatedUpdatePanelID="up1"> <ProgressTemplate> <asp:Panel ID="pnlPopup" …

0
41
Member Avatar for geeganagei

I have to conduct a IT project for my next semester(4th year).I already have done a web based project in my 2ND year(using Asp.net C#). But it is not much complex. I heard 4th year project is more complex then 2ND year. therefor i want to advice to find a …

0
59
Member Avatar for Izzy123

Hi can anyone pls tell me how to add notes in source code in Visual Studio 2010? I only want the notes to be viewed in source code view, not design view! I tried //notes here 'notes here but they all ended up showing in the design view, HELP PLS!

Member Avatar for Ailurophile
0
45
Member Avatar for ÜnLoCo

Hello has anybody come across a similar control to this one. [URL="http://img138.imageshack.us/img138/875/23102010172021.png"]http://img138.imageshack.us/img138/875/23102010172021.png[/URL] if so then please give me a link. thank a lot edit : found this one [url]http://www.filebuzz.com/fileinfo/38822/Angulum.html[/url] any better suggs are welcome though :D

0
109
Member Avatar for pee2002a

Hi there! What i want to do is something similar to this: [URL="http://sig.cm-olb.pt/develop.aspx?Layer=Cemit%C3%A9rio&Field=n_sepultur"]http://sig.cm-olb.pt/develop.aspx?Layer=Cemit%C3%A9rio&Field=n_sepultur[/URL] (Zoom, Drag, info, etc) Whats the best way to do it? Is there any component to help me? Thanks

0
40
Member Avatar for Ziggynet

Hi Everyone I have two aspx pages that updates two values in a database. I have an update button called Button1. Button1 in the first page redirects to the second aspx page. On the second page i want to select a value and then redirect to the first page. How …

Member Avatar for sujimon
0
115
Member Avatar for newjerseydr

I created an application in .net that emails a person using mapi and outlook 2000. It works fine on pc that has outlook 2000 sp1, but doesn't work on pc that has outlook 2000 no sp. Outlook 2000 puts the recipaddress in quotes. Does anyone know how I stop Outlook …

Member Avatar for Jhon1975
0
142
Member Avatar for sakurayana

i want your help....please help me through this......i dont knw what to do.... i've 1 table contains 1 row and 3 colums..and i've 1 action button to insert a new data....what can i do,so when we click the insert button,a new blank row will appear then we can insert a …

Member Avatar for ashishkumar008
0
93
Member Avatar for snehalj

i have taken one mster page in my project. in that one image is there, that image is not displayed in other pages which are related to that master page. i have tried to change image extension also but it didnt work.

Member Avatar for Borzoi
0
184
Member Avatar for jackparsana

hi, please help me to apply style to fileupload control in asp.net. can i change style? thanks jack

0
87

The End.