Click here to Skip to main content
15,886,362 members

Videos


Page 1 of 5
1 2 3 4 5


.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
1. how to get substring for int datatype
Try,SELECT districtid % 100 AS id FROM tablename
Database Development » SQL Server »
jayantbramhankar Updated: 3 Jan 2013
Rating: ( (No votes))
2. Send Mail Using C# through personal Domain
SmtpClient client = new SmtpClient("smtp.gmail.com");NetworkCredential LoginInfo = new NetworkCredential("email@gmail.com", "password");client.UseDefaultCredentials = false;client.Credentials = LoginInfo;MailMessage mail = new MailMessage();mail.From = new...
Web Development » ASP.NET »
jayantbramhankar Updated: 17 Dec 2012
Rating: ( (No votes))
3. change field size in SQL
ALTER TABLE dbo.tableNameALTER COLUMN description VARCHAR(30) NOT NULL
jayantbramhankar Updated: 17 Dec 2012
Rating: 5.00/5 ( (1 vote))
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
4. how can i return data in dropdown list in mvc3 from selected store value
If you are using Razor ViewsUse optionlabel in View@Html.DropDownListFor(model => model.FieldName, (SelectList)ViewBag.DepartMent, Model.FieldName)or Create SelectList and mention your selectedValue in ActionSelectList Banks = new SelectList(new Department().Seed(), "DepartmentName",...
Programming Languages » Razor »
jayantbramhankar Updated: 10 Oct 2012
Rating: ( (No votes))
.

()
» »
Updated:
Rating: ()
5. Wildcard domain in windows hosting[Plesk]
I'm working on a project which is mainly based on the subdomains, every customer to that website will have seperate subdomain.ex. customer1.mywebsite.com. customer2.mywebsite.com.I have tried to add wildcard subdomains (*.mywebsite.com) and pointing their CNAME to the main website i.e...
Hosted Services » Web Hosting »
jayantbramhankar Updated: 28 May 2012
Rating: ( (No votes))
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
6. Calling a StoreProcedure using Linq in ASP.net C#
This may help you.[Six simple steps to use a Stored Procedure in LINQ]
Web Development » ASP.NET »
jayantbramhankar Updated: 3 Apr 2012
Rating: ( (No votes))
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
7. coonect sql data base with c# form
Hope this helphttp://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.aspx[^]
jayantbramhankar Updated: 29 Jun 2011
Rating: ( (No votes))
8. How to get displayed values from database using dropdownlist?
handle selectedidexchange events for dropdown and call your methodsand check pagepostback on pageloadprotected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { loademploeelist(); loaddepartmentlist(); } }
Web Development » ASP.NET »
jayantbramhankar Updated: 29 Jun 2011
Rating: ( (No votes))

Page 1 of 5
1 2 3 4 5