Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~4K People Reached
Favorite Tags
Member Avatar for mrjimoy_05

I have the code below to show the modal-box after a LinkButton clicked. And, what I want to do is how to assign the Textbox value on the modal-box from the javascript. I have a gridview: <asp:GridView ID="GV1" runat="server" DataSourceID="DS1" > <Columns> <asp:TemplateField ShowHeader="False"> <ItemTemplate> <asp:LinkButton ID="LinkButton" runat="server" CausesValidation="False" > …

0
69
Member Avatar for mrjimoy_05

Hi, how can I change the HTML code via VB .Net code? For example, on .aspx file I have: <div class="Menu_On"><asp:LinkButton ID="Link_Menu1" runat="server">Menu 1</asp:LinkButton></div> <div class="Menu_Off"><asp:LinkButton ID="Link_Menu2" runat="server">Menu 2</asp:LinkButton></div> <div class="Menu_Off"><asp:LinkButton ID="Link_Menu3" runat="server">Menu 3</asp:LinkButton></div> Then, when I click the "**Menu 2**" link, the class which coping the link should change …

Member Avatar for hericles
0
341
Member Avatar for mrjimoy_05

How can I replace the text of a label control contained in a formview? I've tried to use the code below: [CODE]Protected Sub FormViewNews_DataBound(sender As Object, e As System.EventArgs) Handles FormViewNews.DataBound Dim pagerRow As FormViewRow = FormViewNews.BottomPagerRow Dim Active As Label = CType(pagerRow.Cells(2).FindControl("OFMLabel"), Label) If Active = "False" Then Active …

Member Avatar for crishlay
0
160
Member Avatar for mrjimoy_05

Hi all, I've problem with this code: [CODE]With MenuNavCatDataSource Dim xReader As Data.IDataReader = .Select(DataSourceSelectArguments.Empty) If xReader.Read Then MenuNavCat1.Text = xReader.Item("MenuCategoryName") MenuNavCat2.Text = xReader.Item("MenuCategoryName") MenuNavCat3.Text = xReader.Item("MenuCategoryName") MenuNavCat4.Text = xReader.Item("MenuCategoryName") MenuNavCat5.Text = xReader.Item("MenuCategoryName") End If End With[/CODE] I've 5 label and I want to parse the content of the label …

0
77
Member Avatar for mrjimoy_05

Hey all, I have a problem to read a XML file using XmlReader. I have this code: [CODE] Dim xCount As Integer = 0 Using xReader As XmlReader = XmlReader.Create("tekno.xml") TreeView1.Nodes.Clear() Do While xReader.Read() With TreeView1 .Nodes.Add(xReader.Item("title")) .Nodes(xCount).Nodes.Add("(link: " & xReader.Item("link") & ")") .Nodes(xCount).Nodes.Add("Date: " & xReader.Item("pubDate")) .Nodes(xCount).Nodes.Add(xReader.Item("description")) xCount = …

0
95
Member Avatar for mrjimoy_05

Hi, why it's always got the error message said that "NullReferenceException Unhandled" ? Here is my code: [CODE] public partial class MainPage : PhoneApplicationPage { private FlashCard _flashCard; // Constructor public MainPage() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { // This could go under somewhere like a …

Member Avatar for Momerath
0
124
Member Avatar for mrjimoy_05

I am a newbie in Visual Studio (C#). I want to store a text read from a text file and display it on a TextBlock control, but just for a specified row. How can I do that? I've try to search on the internet, and most of them just show …

Member Avatar for nick.crane
0
1K
Member Avatar for mrjimoy_05

Hi guys, Why my code below doesn't work? How to make them work together on one page? [CODE] // THIS CODE IS FOR DATE PICKER <link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.js"></script> <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script> <script> $(document).ready(function() { $("#datepicker").datepicker({dateFormat: 'yy-mm-dd 00:00:00'}); }); </script> // THIS CODE IS FOR VALIDATOR <link rel="stylesheet" …

0
69
Member Avatar for mrjimoy_05

Hello guys! How to load content into the ckeditor? Pls look [url]http://ckeditor.com/demo[/url] for example. My code is below: [CODE] <textarea class="ckeditor" name="pagecontent" cols="100" rows="20" id="pagecontent"></textarea> <?php include_once "../Misc/ckeditor/ckeditor.php"; $CKEditor = new CKEditor(); $CKEditor->basePath = '../Misc/ckeditor/'; $CKEditor->replace("pagecontent"); ?> [/CODE] I want the content automatically loaded from MySQL database to the CKEditor …

Member Avatar for mrjimoy_05
0
192
Member Avatar for mrjimoy_05

Hi guys, How to integrate Facebook to our site, based on ASP.Net (VB.Net)? I want to integrate just for the posting/thread and show it to my site. Just like in [URL="http://www.jubilee.org"]http://www.jubilee.org[/URL], they are using Twitter Widget. Please any one help me, because I am in project to build an alumni …

Member Avatar for Fortinbra
0
128
Member Avatar for mrjimoy_05

Hi guys, I have problem with my login script. I am using VB.Net (ASP.Net) to do that things. Here is the code: This is the code for Default.aspx page [CODE] User Name: <asp:TextBox ID="userID" class="txtbox" runat="server"></asp:TextBox> Password: <asp:TextBox ID="password" class="pwdbox" runat="server" TextMode="Password"></asp:TextBox> <asp:LinkButton ID="login" class="button" runat="server">&nbsp;Login&nbsp;</asp:LinkButton> <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ …

Member Avatar for mrjimoy_05
0
804
Member Avatar for bangla

Hi, 1. When i type [url]http://localhost[/url], i get the XAMPP page. 2. I started eclipse.exe. Created a new php project(workspace- C:\Program Files). also create a simple hello world php file. 3. eclipse and xampp both saved in c/program files. 4. opened up C:\Program Files\xampp\apache\conf\httpd.conf. In the httpd.conf file, i put …

Member Avatar for mrjimoy_05
0
78
Member Avatar for Member 785582

Hi, I have a trouble with my script. Everytime I execute index.php, and call add_schedule, always appear message: Fatal error: Call to a member function add_schedule_form() on a non-object in index.php on line 19. I have try to fix by changing the syntax on line 19 (index.php) but it just …

Member Avatar for rajarajan2017
0
213