- Strength to Increase Rep
- +6
- Strength to Decrease Rep
- -1
- Upvotes Received
- 9
- Posts with Upvotes
- 8
- Upvoting Members
- 8
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
Vuyiswa Junius Maseko is a programmer for Dotnetfunda in “DotNetFunda" in India. Vuyiswa has been developing for 9 years now. his major strength are C# 1.1,2.0,3.0,3.5 and vb.net and sql and his interest are in asp.net, c#, smart clients,…
- Interests
- Soccer and Food
Re: You need a SMS gateway, they are not free, the is clickatell.com , they will expose a web service and you will consume a webservice that has methods to send an sms, but you need to buy the sms bundles | |
Good Day All i have a ListView that is defined in a Xamarin Form. i want this ListView to be updated with the Data from the DB every 5 seconds. In a Non Mobile environment , we have a Windows Service , which is a long running Service. but now … | |
Re: hi bankerrajendra First you have to Create a Storedprocure that counts the Records that match the username and password, [CODE]Create Procedure prclogin_check ( @User_name varchar(20), @U_Password varchar(23), @Results int Output ) Set @Results = (Select count(*) from User_Table where User_name =@User_name and U_Password = @U_Password)[/CODE] And after you are done … | |
Re: First you must buy a Book, i think every .NET Books that i have ever read they cover that part . [URL="http://www.codeproject.com/KB/cs/NTier.aspx"]http://www.codeproject.com/KB/cs/NTier.aspx[/URL] [URL="http://www.codeproject.com/KB/cs/N-Tier22.aspx"]http://www.codeproject.com/KB/cs/N-Tier22.aspx[/URL] [URL="http://www.codeproject.com/KB/vb/N-Tier_Application_VB.aspx"]http://www.codeproject.com/KB/vb/N-Tier_Application_VB.aspx[/URL] Thank you | |
Good Day all i am using Navigation service as depicted below <Frame x:Name="_home" NavigationUIVisibility="Hidden" HorizontalAlignment="Stretch" Width="2749" Margin="0,12,0,0" /> and i navigate to the Page like this (Application.Current.MainWindow.FindName("_home") as Frame).Source = new Uri("/F1.xaml", UriKind.Relative); which work fine. now in the Navigated page, lets just say a page shown in the Frame,there … | |
Re: This is not a Right Place to post Articles. There should be Articles Section. You are confusing the users | |
Re: You are using too much Wizards that is why your code confuses you. Look at what Sheo did in his article [URL="http://www.dotnetfunda.com/articles/article18.aspx"]http://www.dotnetfunda.com/articles/article18.aspx[/URL] | |
Good Day All I hope someone can help me. i have a Asp.net web application that is running on 4.51 , When the User login Successfully i return an Object that has info for that user and store this in a Static object. Now my problem is the i User … | |
Good Day All i have an asp.net 4.5 application. i have hosted it on IIS 7.5 in Windows Server 2008. My application has different folders within it and some are for JS and some are for CSS and etc.. and they are inside a directory named "Shared" in my problem … | |
Good Day all i am reluctantly maintaining a Classic Asp application that will be re-written in few months to come. i have an issue where i have a Code like this if(document.frmEntry.optMethod != "undefined") { if (document.frmEntry.optMethod.selectedIndex == 0) { strPrompt=strPrompt+'Please specify the Valuation Method\n'; if ( objFocus == null … | |
Re: First of all what you need to do, when the User logs in, Carry the Username in the Session variable like this //if the user is Successfully logged in [CODE]Session["Username"] = txtusername.text; [/CODE] and in all your other pages , you will probably have a Label that will Display the … | |
Good Day All i am opening a Popup and i want to bind the "onbeforeunload" to the popup that if someone clicks on the close button in the window or close button in the page , the event should fire a javascript function that is on the page that opened … | |
Re: It is Simple. Add the grid and the Button inside an Update Panel and every time you click the Button you will not loose the values of the controls that you created dynamically. kind Regards Vuyiswa Maseko | |
Its a Requiredment, i have a asmx service that returns a list<dataset> and the schema defination keeps on repeating foreach dataset in the List. How can i prevent. Thanks | |
Good Day i have been hit by this error this night. I have a UDF defined like this CREATE FUNCTION [dbo].[funcFormatPercentages_Extended_numeric] ( -- Add the parameters for the function here @parPercentageToBeFormatted nvarchar(20) ) RETURNS nvarchar(20) AS BEGIN RETURN CAST(CAST(convert(float,@parPercentageToBeFormatted)* 100 AS decimal(4, 1)) AS nvarchar(5)) + N'%' END so i … | |
Re: Most of the Paid domains give this for free in their Control Panels. or you can try this [code] protected void Page_Load(object sender, EventArgs e) { Application.Lock(); if(Application["HitCount"]!=null) { Application["HitCount"]=(int)Application["HitCount"]+1; } else { Application["HitCount"] =1; } Application.UnLock(); lblInfo.Text="The page has been accessed ("+Application["HitCount"].ToString()+") times"; }[/code] or this might Help [URL="http://www.stardeveloper.com/articles/display.html?article=2002102501&page=1"] … | |
Good Day All I imported data into a Ms Access 2013 from SQL and all the data is there. I created a Query and also created a report that will use the Query. So the Query returns all the data. There are around 590 000 records that needs to be … | |
Good Day All i am building Kinect Application, obviously using WPF.. Now i have a problem with Navigation. I have a Window and others are Pages that will use a Frame in a Window. So the Window has Button to Main to the "Menu" so the Page that contains Menu's … | |
Good Day All I have a Kinect Application , i am having trouble with navigation , so i dont like the creation of object of windows everytime i nagivate from one to another page. so i converted all other windows to WPF pages and created only one window wich will … | |
Good Evening Guys, Today its my Birthaday. I have a If statement that i use to return an integer that will mean Success or Failure , now am testing for that integer in my ASP.NET 2.0 Page lke this [CODE] if (Res == 1) { Response.Write("<script> alert('You have Successfully Registred');</script>"); … | |
Re: I think you are not doing this correctly. i haven't touched ole for long now, but change your code to look like this string connectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\\Users\\Catherine\\Documents\\LearningCSharp.accdb"; OleDbConnection myConnection = new OleDbConnection(connectionString); myConnection.Open(); int employeeNumber = int.Parse(textBox1.Text); string name = textBox2.Text; string address = textBox3.Text; string query = "update … | |
Good Day Guys This is an MVC , JQuery, KNockout.js Question. i have a Controller Action that is being Defined like this [HttpGet] public JsonResult SearchCars(string searchString) { string[] searchTerms = (searchString).ToUpper().Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries); string[] searchTermSounds = new string[searchTerms.Length]; var list = (from r in Cache.CarSearchItems … | |
I have a Counter on a textbox done in Javascript like twitter that counts the text entered. Now It works fine. The Textboxes get field with data and after that i want to calculate the renmaining Text. i have a code for that after i bind the textbox. So i … | |
Good Day ALL I have tried something and i am not sure what is the problem. i have inherited the an asp.net app. So i want to add the custom Error Handling. I know there are two methods i can do this. 1) Web Config 2)Global.asa So i started with … | |
Good Day Fellows i have a Dynamic Questionnaire that is created using dynamic data from the Database. My data in the Database contains the fields like [B]QuestionID[/B] - Primary key [B]Question[/B] - The Question Text [B]Answer[/B] - The Answer [B]Required [/B]- This is a Validation , i used this to … | |
Good Day All My Question goes as follows. I have a DataLayer in a Form of a WCF service and it is being consumed by a Business Layer that is also in a Form of a WCF Service and it is being consumed by a Silverlight Application. Now i have … | |
Good Day All i have a Jquery code defined like this [CODE] // Let's add it to textarea this time $(".cnt").focus(function() { // Check for the change if(this.value == this.defaultValue){ this.select(); } }); [/CODE] and i am creating a textbox on fly and after creating it i bind data to … | |
Good Day All I have a Dynaically created a Textbox and i have a Dynamically created DIV. So what i want to do is to Find the Position of the Textbox and and Dynamically when this textbox is created , please a Div just next to this textbox. So my … | |
Good Day All i am creating Textboxes at Runtime with something like this [CODE]Dim cnt As New TextBox cnt.ID = "cont_" & x If multiline Then cnt.TextMode = TextBoxMode.MultiLine End If [/CODE] These are dynamically created fields. so what i want to do is to use this following JQuery on … | |
Good Day All I have a File Format Defined like this [QUOTE]9.0 4 1 SQLCHAR 0 100 "," 0 ExtraField "" 2 SQLCHAR 0 100 "," 1 Descr SQL_Latin1_General_CP1_CI_AS 3 SQLCHAR 0 100 "," 2 ABREV SQL_Latin1_General_CP1_CI_AS [/QUOTE] and i use it like this [CODE]BULK INSERT dbo.TBL_CMPS FROM 'C:\\UNISA_IMPORT\\Final_Import\\Campuses.csv' WITH … |