Click here to Skip to main content
Page 1 of 3
Page Size: 10 · 25 · 50


Author filtered by: Sant Osha [x]
Answer 7 May 2013   license: CPOL
First install sql server, then change the connection string.
Answer 7 May 2013   license: CPOL
Yes, You can use Cursor in it and can do operation until fetch status equal to 0.
Answer 7 May 2013   license: CPOL
Go to this Link.By next time, please ask appropriate question.
Answer 7 May 2013   license: CPOL
Use below code:PrintForm1.Print(Me, PowerPacks.Printing.PrintForm.PrintOption.FullWindow)
Answer 7 May 2013   license: CPOL
Changed the server control to html control and you can get html.
Answer 6 May 2013   license: CPOL
By your code, you can get 5 textboxes, but you will able able to get id of it.So set id for each control and then assign text to it.
Answer 6 May 2013   license: CPOL
DateTime dt = new DateTime(); dt = Convert.ToDateTime("2013-05-08"); if (dt.CompareTo(DateTime.Now) == 0) { MessageBox.Show("Your Message."); }
Answer 6 May 2013   license: CPOL
You need to get SMS service for trail or paid one.Then you can get api url of it.And you can send SMS via using api.
Answer 2 May 2013   license: CPOL
create database your_db_nameselect top 100 * into table_name from table_name // use this line for all tables//better option is that you create an application and inside for loop execute this query
Answer 2 May 2013   license: CPOL
you can select only one item in drop down list and many in list box list.
Answer 2 May 2013   license: CPOL
Use css property for headers as position:absolute;
Answer 1 May 2013   license: CPOL
Use only one form tag with runat server.This will solve your problem.
Answer 1 May 2013   license: CPOL
Use Graphics and draw images on blank bitmap image.
Answer 1 May 2013   license: CPOL
Set AutoPostBack property of RadioButtonList to True.
C#
Answer 26 Apr 2013   license: CPOL
i changed you code:USE [PRSAppTest_TST]GO/****** Object: Trigger [dbo].[trg_URPatients] Script Date: 04/26/2013 03:54:54 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOALTER TRIGGER [dbo].[trg_URPatients] ON [dbo].[Patients] FOR INSERTAS BEGIN...
Answer 26 Apr 2013   license: CPOL
Go to this link[^]
C#
Answer 26 Apr 2013   license: CPOL
private void btnLogin_Click(object sender, EventArgs e) {try { if (txtUsername.Text.Length > 0 && txtUsername.Text != null && txtPassword.Text != null && txtPassword.Text.Length > 0) { btnClose.Enabled = false; ...
Question 26 Apr 2013   license: CPOL
On submit button I have user validation to enter user id so that then can submit.I have used javascript to show alert box.Code: ScriptManager.RegisterStartupScript(this, typeof(Page), "script", "alert('Please, enter valid User id.');", true);It works fine. Then i click on one of the...
Answer 26 Apr 2013   license: CPOL
put formula in sql query and bind the gridview.
Answer 25 Apr 2013   license: CPOL
you cannot assign two different font to label at a time.you can either create a new font which will combination of both and assign to label.
Answer 24 Apr 2013   license: CPOL
Import into database using OLEDB dataadapter.On page: Display record in Gridview and write updating code for it.At last: Export to excel by going this LInk
Answer 24 Apr 2013   license: CPOL
select 'DelayTime: The total time of Delaye 00:00:00'
Answer 24 Apr 2013   license: CPOL
you use var UnCheckedfilename = cbh.value;to solve your problem
Answer 23 Apr 2013   license: CPOL
select distinct Delaytime from table_name
Answer 23 Apr 2013   license: CPOL
go to this link My Solution
Answer 23 Apr 2013   license: CPOL
use this css property:cursor:pointer;
Question 23 Apr 2013   license: CPOL
Hi,I have javascript validation on one page.if user don't select from dropdownlist and clicked on button then alert box comes up.this is working fine.problem is when i go to other page with click on hyperlink and get back to same page by clicking on back arrow of browser then i get...
Answer 23 Apr 2013   license: CPOL
using System;using System.Data;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.Data.SqlClient;using System.Configuration; public partial class Registration :...
Answer 23 Apr 2013   license: CPOL
create class and name it as you want, by it will be " BOLpage.cs"then define every variable used in your program as Collapse | Copy Codeprivate vST;then create property procedures ( which will get and set the values) as Collapse | Copy Codepublic String ST{ get ...
Answer 23 Apr 2013   license: CPOL
string sql = ""; sql = "select * from table where parentId =0 "; sql = sql + " select * from table where parentId =1 "; sql = sql+ " select * from table where parentId =5 "; sql = sql+ " select * from table where parentId =8 "; DataSet...
Answer 23 Apr 2013   license: CPOL
//Put this code if login failed for user... in your else partif (Session["Count"] != null) { if (Session["Count"].ToString() != "3") { Session["Count"] = Convert.ToInt32(Session["Count"].ToString()) + 1; } ...
Answer 22 Apr 2013   license: CPOL
javascript is client side language.use c# to populate grid.as string sql = "";//put your sql query DataSet ds = new DataSet(); SqlDataAdapter da = new SqlDataAdapter(sql, cn); da.Fill(ds); if (ds.Tables[0].Rows.Count > 0) { ...
Answer 22 Apr 2013   license: CPOL
Create a page named it "ErrorPage.aspx" and give message in page.Now, in your current page Use below code:protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { if (Session["TransIDId"] == null) { ...
Answer 22 Apr 2013   license: CPOL
I addedif (Session.SessionID == "") { Page.Session.Add("SessionID", Session.SessionID); }in Page Load.
Question 22 Apr 2013   license: CPOL
Following error I'm getting:Uncaught Sys.WebForms.PageRequestManagerParserErrorException: Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed. Common causes for this error are when the response is modified by calls to...
Answer 18 Apr 2013   license: CPOL
int count = 0; for (int i = 0; i
C#
code throw execption by Sant Osha
Answer 18 Apr 2013   license: CPOL
The table 'ISB VAS NODE$' specified by you not present in database.
search by dropdownlist by Sant Osha
Answer 18 Apr 2013   license: CPOL
//for Drop down liststring sql = "";//put your sql query DataSet ds = new DataSet(); SqlDataAdapter da = new SqlDataAdapter(sql, cn); da.Fill(ds); if (ds.Tables[0].Rows.Count > 0) { ddl.DataSource = ds; ddl.DataTextField...
Answer 18 Apr 2013   license: CPOL
I have added AsyncPostBackTimeout="360000" to RadScriptManager.
Question 18 Apr 2013   license: CPOL
HI,Tab working in IE, but not in Chrome.If I remove RadAjaxManager then its work in chrome.I need that to work in Chrome as well with RadAjaxManager.Help me.Code as below: ...
Question 31 Jan 2013   license: CPOL
find number of inversions in arrayWhere array are randomly 1 to 100000 ????
C#
Question 20 Aug 2012   license: CPOL
hello, i'm software developer with 1 year of exp.i like to do certification in ASP.NET.i found MCPD certification.But unable to find the info about process to get certification.Thanks
Answer 12 Aug 2012   license: CPOL
Create all tables required for your project, create primary key and give relationship.After all this, click on Databse diagram, click to add tables and then you have ER Diagram.
need help in sql query by Sant Osha
Answer 12 Aug 2012   license: CPOL
You are saving mdf and ldf file.Use following query....restore database SQL2008_561218_ots_backup from disk='D:\SQL2008_561218_ots_backup.bak'WITHMOVE 'DataTakeon_Data' TO 'D:\DataTakenon.mdf',MOVE 'DataTakeon_Log' TO 'D:\DataTakenon.ldf'
Question 12 Aug 2012   license: CPOL
Hello,I have used center tag in my page , in center there is table and gridview.In IE, there are in Center. But in Mozilla and crome they are at left side.Help me out.
Answer 4 Aug 2012   license: CPOL
Session.Clear(...
C#

Page 1 of 3
1 2 3


Advertise | Privacy | Mobile
Web02 | 2.6.130513.1 | Last Updated 15 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid