13,153 Topics
| |
Here is my [b]Stored Procedure [/b] stored in SQl DB. [code] CREATE PROCEDURE qparmVerifyLogin @First_Name varchar(30), @Last_Name varchar(30), @SSN varchar(9) AS Select First_Name, Last_Name, SSN, ADDRESS1, CITY, STATE, POSTAL, DEPTID, EMPLID FROM PERSONAL_DATA_TBL WHERE First_Name = @First_Name AND Last_Name = @Last_Name AND SSN = @SSN; GO [/code] [b]Below is the … | |
Hi Anyone, I've made a web application, and now I want my web login by username and password as below but it's have got error('Login.WebForm1.DBConnection(string, string)': not all code paths return a value) anyone who can help me? [code] private bool DBConnection(string strUserName, string strPassword) { string LoginSQL; OleDbConnection MyConn … | |
I use the following code to send email, and strange thing that I received the message at hotmail mail, and failed to receive it at yahoo mail, could you help me and explain what happened and how to overcome this. Regards Serag Farag Private Sub Button1_Click(ByVal sender As System.Object, ByVal … | |
Dear All, How do i send SMS Message from my asp.net (vb.net or c#) application. can u guide me help, please........... Thanks, Suresh U. | |
now that i have the site set up with an authentication it seems that i have to use a soap service to authenticate the passwords against. so i guess i'll need to use the .net login page i have pass the information over to soap string somewhere and take a … | |
Hello All, I'm trying to understand the whole concept of Webservices ans ASP.NET. I've created following documents, using "VB" Script. MathServiceClient.aspx MathService.asmx MathService.wsdl MathService.vb On my MathServiceClient.aspx file I have the following include, {code} <%@ Import Namespace="MathService" %> {/code} *I think this forum required {code}{/code} when posting code. Well, when … | |
hi im a newbie in asp.net(learn 2 days ago) n still havent fully grasp the concept of asp.net yet. I ran into some problems here but i dunno what is it. i've tried looking at the other post but could not really find the error in mine .Can you please … | |
Hi there. In my work I've got pretty simple task-create a new javascript window and send data from it to "original page". Because of original web page's logic I cant pass entered data back through querystring so I decided to register a event on javascript page and then data send … | |
| Hi All, I'm stuck!! I've got a page with 3 dropdowns on it and a submit button to pass the data to a table in a database. The code is as follows: [CODE] Sub Page_Load(sender as Object, e as eventargs) dim objConn as new OleDbConnection ("Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=C:\blah\blah\blah.mdb) objConn.Open() … |
Hello, I'm facing a with a real-time app. This real-time app is reading data from the serial port, then, process it. However, it seems to miss some data when the computer has some other apps running. More data are lost when other app do heavier processing. When i try to … | |
Can anyone tell me how or what's the code for the following: 1. I have two frames on my web page. (Top and Bottom) 2. Top Frame is data 3. Bottom Frame are some Controls. (Print button, Back Button, Close Button.) 4. I [B]do not[/B] want to use Java. 5. … | |
I am just going to throw this out here and see what responses I get. Is there any tutorials any of our members would like me to post in the .NET Tutorial Section? Login (done) Registration (done) SQL vs Access DB backend (done) I was thinking of possibly a datagrid … | |
how i can make connection with acces database from three location like, lahore, london and usa . i m using application software and , can u guy suggest me any other way to solve this prob or make is sufficent , might eb webbased ..? if one updation occur on … | |
I have the following code snippet 1) Page1.aspx.cs protected void Page_Load(Object sender, EventArgs e) { if (!Page.IsPostBack) { //other code Session["scdid"] = null; //other code } } //Submit button handler for this page protected void submit_record(object sender, EventArgs e) { //other code string sschd = (string) Session["scdid"]; if (Session["scdid"] != … | |
Hello All, I posted this over in the Software Forum, but I realized that maybe it belongs over here. I have both VS 6.0 and VS .Net 2003 available to me. I am just starting to learn programming and wanted to know the difference and which one would be the … | |
[B]PURPOSE [/B] I'm trying to adjust the styles of buttons,textbox ....(More like height,width,text size) so that it looks good for each and every resolution,window size.. [B]ISSUE [/B] Whenever I change the attributes like background and size,While using Internet Explorer its working fine but in Mozilla its not working at all … | |
I've made a web-crawler in VB6. I'd like to port it to .NET so I can make it accesible to the public over the web. Basically my own version of Poodle. Porting most of the code will be very easy, BUT, I haven't found any way via .NET to read … | |
Hi, I'm learning ASP.NET. I have installed Free ASP.NET Web Development Tool , which is Webmatrix, but when i'm using this tool to create web forms its not user friendly, because it is hard to move objects from one place to another place. I have created couple of web forms … | |
hello , i facing problem while trying to run .Net web services in Apache web server on Mac os x. while running .Net web services on XSP its throwing an error and in Apache web server its just showing first line of the .asmx file. i would be very thankful … | |
Hi guys, I have not had a chance to work on the 3 applications for the past few months due to my busy schedule. As I promised everyone that I will release the ASP .NET version of the World Recipe, Directory and hopefully the Extreme Photo Gallery. For now, I'm … | |
I have a pretty straightforward pair of aspx pages that were working just fine until last night. The first page has a form that posts to itself, updates some values in a session object, then calls Response.Redirect to the second page. The second page loads a datagrid from the session … | |
hi, i'm kind of new to asp i used a few tutorials to put together a basic login page and to dump the information to a cookie. [B]overview:[/B] i guess what i'm trying to accomplish is to have an ASP.net login page and JavaScript validation though out the pages it … | |
[B]PURPOSE[/B] I'm trying to create an email webform.. [B]REQUIREMENT[/B] I need a box for users to enter their Message. [B]ISSUE[/B] In want to use TEXTAREA but I dont know whether its available in ASP.NET server controls..But certainly TEXTAREA control is available on the client HTML section. [B]QUESTION[/B] Are there any … | |
I have a form from where user want to connect to a DB and fill a spread sheet (excel). This is supported in vb.net. Below syntax gives me error in asp. Below is my code. Thanks. Dim xlApp As Excel.Application = New Excel.ApplicationClass Dim xlBook As Excel.Workbook Dim xlSheet1 As … | |
| Hi All, First post here so be gentle! I'm working through Sams Teach Yourself ASP.Net book and have come across an error with one of the basic examples. The example is to do with .vb and .aspx files and compiling them. I have succesfully compiled the database.vb file. The contents … |
I am trying to databind one entry retrieved from a SQL statement. All I want to do is databind in the code behind page. For some reason I have lost my brain and cannot figure out how to do it.... | |
hi!!! actually i'm doing a project for e-survey. the problem is that when i create different types of control, an error message is displayed. but if i create only radio buttons, everything fine. can u plz see my problem. thanks ant ---------------------------------------- Imports System Imports System.Configuration Imports System.Data Imports System.Data.SqlClient … | |
I have a web page that will display an image (ie a logo). I am using the following code but the image is not being displayed in the image control. Image1.ImageUrl = "C:\logo.jpg". Thanks. | |
I have two dropdownlists. I can choose say USA and then it goes into the DATA base but does not save it in the dropdownlist itself. I can not figure out why this is happening. > <code> > Edit mode the index of a dropdownlist does not start at the … | |
I intend to use session variable to capture searching keywords and catagory input by user. I created datatable dTable to store "catagory", "keyword" and "ID" and save it into session variable session("MyCat") when page is firstly loaded. If it is still within same session time frame, any new input will … |
The End.