I am not experienced in aspx coding, but I am attempting to customize a button on an aspx page that utilizes Telerik with Bootstrap. The code snippet is as follows:
<telerik:RadButton CssClass="btn btn-primary" ID="rbtnGiris" runat="server" Text="Giriş" OnClick="rbtnGiris_Click" EnableEmbeddedSkins="false" EnableEmbeddedBaseStylesheet="false">
</telerik:RadButton>
The resulting HTML output is:
<a href="javascript:void(0)" class="RadButton RadButton_Default rbSkinnedButton" id="rbtnGiris">
<input type="submit" value="Giriş" id="rbtnGiris_input" name="rbtnGiris" class="btn btn-primary" tabindex="-1">
<input type="hidden" name="rbtnGiris_ClientState" id="rbtnGiris_ClientState" autocomplete="off">
</a>
However, the button does not appear correctly because it is targeting an "a" element. I am unsure how to properly modify this. If anyone has suggestions on how to achieve the desired look and feel with Telerik components, please let me know. Additionally, please advise if this task requires specific .Net coding skills or Visual Studio, as I am currently editing the .aspx page using Notepad++ :)
Thank you in advance for your help!