<div class="theme-colors default-transition" style="opacity: 1;"> <div class="p-4"> <p class="text-muted mb-2">Light Theme</p> <div class="d-flex flex-row justify-content-between mb-4"> <a href="#" data-theme="dore.light.blue.min.css" class="theme-color theme-color-blue active"></a> <a href="#" data-theme="dore.light.purple.min.css" class="theme-color theme-color-purple"></a> <a href="#" data-theme="dore.light.green.min.css" class="theme-color theme-color-green"></a> <a href="#" data-theme="dore.light.orange.min.css" class="theme-color theme-color-orange"></a> <a href="#" data-theme="dore.light.red.min.css" class="theme-color theme-color-red"></a> </div> <p class="text-muted mb-2">Dark Theme</p> <div class="d-flex flex-row justify-content-between"> <a href="#" data-theme="dore.dark.blue.min.css" class="theme-color theme-color-blue"></a> <a href="#" data-theme="dore.dark.purple.min.css" class="theme-color theme-color-purple"></a> <a href="#" data-theme="dore.dark.green.min.css" class="theme-color theme-color-green"></a> <a href="#" data-theme="dore.dark.orange.min.css" class="theme-color theme-color-orange"></a> <a href="#" data-theme="dore.dark.red.min.css" class="theme-color theme-color-red"></a> </div> </div> <a href="#" class="theme-button"> <i class="simple-icon-magic-wand"></i> </a> </div>
nidovan
Wednesday, February 6, 2019
Tab
<div class="card">
<div class="card-header pl-0 pr-0">
<ul class="nav nav-tabs card-header-tabs ml-0 mr-0" role="tablist">
<li class="nav-item w-50 text-center">
<a class="nav-link active show" id="first-tab_" data-toggle="tab" href="#firstFull" role="tab" aria-controls="first" aria-selected="true">Tab 1</a>
</li>
<li class="nav-item w-50 text-center">
<a class="nav-link" id="second-tab_" data-toggle="tab" href="#secondFull" role="tab" aria-controls="second" aria-selected="false">Tab 2</a>
</li>
</ul>
</div>
<div class="card-body">
<div class="tab-content">
<div class="tab-pane fade active show" id="firstFull" role="tabpanel" aria-labelledby="first-tab_">
<h6 class="mb-4">Homemade Cheesecake with Fresh Berries and Mint</h6>
<button type="button" class="btn btn-sm btn-outline-primary">Edit</button>
</div>
<div class="tab-pane fade" id="secondFull" role="tabpanel" aria-labelledby="second-tab_">
<h6 class="mb-4">Wedding Cake with Flowers Macarons and Blueberries</h6>
<button type="button" class="btn btn-sm btn-outline-primary">Edit</button>
</div>
</div>
</div>
</div>
Monday, May 26, 2014
How to send or pass multiple parameters in jquery ajax in asp.net
f we want to send or pass multiple parameters using JSON or JQuery in asp.net we need to declare it like as shown below
$.ajax({
type: "POST",
contentType: "application/json;charset=utf-8",
url: "SaveAudiVideo.aspx/SaveData",
data: JSON.stringify({title: 'value1' ,songPath: 'value2' }),
dataType: "json",
success: function(data) {
$('lbltxt').text(data.d);
},
error: function(result) {
alert("error");
}
});
|
Here JSON.stringify is used to encode the parameters in JSON format and our webmethod will be like as shown below
http://www.aspdotnet-suresh.com/2012/07/how-to-send-or-pass-multiple-parameters.html
Monday, February 10, 2014
Tuesday, February 4, 2014
How to fire button click event on page load in asp.net automatically
1. you can directly call your button click event like this.
2. or using jquery like this..
3. if you want to call your button click event in your page load you can directly call like
//btnSubmit is my asp.net button control's id
btnSubmit_Click(btnSubmit,null);
2. or using jquery like this..
$(document).ready(function(){
//Id of your button control either it is server control or simple html control
$("[id*='btnSubmit']").click();
});
3. if you want to call your button click event in your page load you can directly call like
protected void Page_Load(object sender, EventArgs e)
{
//btnSubmit is my asp.net button control's id
//It will fire each and every time your page load event is fire.
btnSubmit_Click(btnSubmit,null);
}
Tuesday, November 5, 2013
Deployment Conflict Resolution for Sharepoint List Definition in Visual Studio
http://michaelbrockman.wordpress.com/2010/11/10/deployment-conflict-resolution-in-visual-studio/
If you are provisioning a ListInstance in Visual Studio you may see the following error message:The URL or name of this list instance conflicts with a list instance already on the server.
The list instance on the server will be deleted before deploying the new list instance.
If you select Resolve Automatically, your list and all of its data will be removed before a new instance of the list is provisioned. To prevent this, you can set the Deployment Conflict Resolution property of the list instance in the Solution Explorer to None. Simply right-click on the list instance project item in VS and select Properties. Then select None from the dropdown list of values:
Thursday, October 31, 2013
Issues Uploading Large Files To SharePoint
http://blogs.technet.com/b/praveenh/archive/2012/11/16/issues-with-uploading-large-documents-on-document-library-wss-3-0-amp-moss-2007.aspx
Subscribe to:
Comments (Atom)


